1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

VST2: Allow VST2 plugins to build for win32 with LLVM

This commit is contained in:
reuk 2020-09-25 19:46:40 +01:00
parent 4d27422d9f
commit fd8ba2deda

View file

@ -2228,7 +2228,7 @@ namespace
return pluginEntryPoint (audioMaster);
}
#ifndef JUCE_64BIT // (can't compile this on win64, but it's not needed anyway with VST2.4)
#if ! defined (JUCE_64BIT) && JUCE_MSVC // (can't compile this on win64, but it's not needed anyway with VST2.4)
extern "C" __declspec (dllexport) int main (Vst2::audioMasterCallback audioMaster)
{
PluginHostType::jucePlugInClientCurrentWrapperType = AudioProcessor::wrapperType_VST;