I’m working on the Windows port of a plug-in, and there’s some issue with it not finding an external library it needs during the linking phase of the build. I’m getting hundreds of “unresolved external symbol” errors from the linker. Odd thing is, in the error messages, it claims the library filepath is:
Z:\git repos\MyPlugin\Builds\VisualStudio2017\cryptlib.obj
However, in Projucer, I have specified Extra library search paths to be:
C:\Users\me\Desktop\cryptopp\x64\cryptlib\Debug\
So Visual Studio is looking in a MyPlugin\Builds
subdirectory for a library file that exists on a completely different drive! Does this indicate that it’s not finding anything in that search path, and falling back on MyPlugin\Builds
as a default search path?