From mstarikov142 at gmail.com Tue Mar 3 17:36:11 2020 From: mstarikov142 at gmail.com (Mikhail Starikov) Date: Tue, 3 Mar 2020 15:36:11 -0700 Subject: [openal] visual studio 2019 openal soft Message-ID: Hello I've managed to buid openal soft using cmake. But now I have o idea how to link it to my visual studio 2019 project can you help me with that? Mikhail Starikov. -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris.kcat at gmail.com Tue Mar 3 18:00:16 2020 From: chris.kcat at gmail.com (Chris Robinson) Date: Tue, 3 Mar 2020 15:00:16 -0800 Subject: [openal] visual studio 2019 openal soft In-Reply-To: References: Message-ID: <00117b8b-24c6-523a-9e29-3f5587d96efe@gmail.com> On 3/3/20 2:36 PM, Mikhail Starikov wrote: > Hello I've managed to buid openal soft using cmake. But now I have o idea > how to link it to my visual studio 2019 project can you help me with that? I'm not too familiar with using MSVC, but after building OpenAL Soft it should have created a .lib file (OpenAL32.lib). You would link your project to that to link with OpenAL Soft. You would also need to add OpenAL Soft's include\AL folder to your project's include paths so you can include the headers (alternatively, you can copy the headers from OpenAL Soft's include\AL folder to somewhere in your project so you don't need to add an extra include path to use them).