I‘m developing my plugins on macOS, and now it’s time to make them compile on Windows!
I have a library as dependency. In the XCode exporter, I add -L/usr/local/lib
to tell the linker where the .lib
file is located, but that doesn’t work with the VS 2019 exporter.
So what’s the best way to tell Visual Studio where to look for dependency .lib
files?
I’d prefer a solution based on a Projucer setting, although I’ve read I could also add a #pragma
.
I‘m a real noob when it comes to Windows, so please excuse the basic question, but I couldn’t find anything definitive here in the forums.
Thanks in advance!