Compiling JuceAudioPlugIn for "Release" in Visual

Hi,

I have written a Spectogram VST plugin and would like to compile for “Release” in Visual Studio Express C++. When I try I get the following error:

Linking…
BinaryData.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance
LINK : fatal error LNK1104: cannot open file 'jucelib_static.lib’
Build log was saved at "file://c:\VstDevel\JuceAudioPlugin\demo\build\VST_Win32\Release\BuildLog.htm"
JuceAudioPlugin Demo - 1 error(s), 0 warning(s)

I’ve searched for the the jucelib_static.lib file but didn’t find it?

Thanks
Thomas

you need to build JUCE in release mode too.

Perfect! That did it! :slight_smile:

Thanks
Thomas