SFML community forums

Help => General => Topic started by: Aquacalvin on March 13, 2014, 10:21:24 pm

Title: Where is OpenAL?
Post by: Aquacalvin on March 13, 2014, 10:21:24 pm
Hey everyone! I am finally wanting to incorporate sound in my games. I have a question though. Where is OpenAL, how do I get it, and do I just plop the file in my project folder? Thanks.
Calvin
Title: Re: Where is OpenAL?
Post by: eXpl0it3r on March 13, 2014, 10:48:41 pm
OpenAL gets shipped with the SFML source code or SDK packages. It can be found for example here (https://github.com/SFML/SFML/tree/master/extlibs/bin/x86).

To use SFML's audio module, you simply link against the SFML audio module, like you would with any other module and then copy the libsndfile and OpenAL DLLs next to your executable. :)
Title: Re: Where is OpenAL?
Post by: Aquacalvin on March 14, 2014, 12:45:35 am
Thanks! I got it to work!