1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Couple of tweaks to VST3 generation.

This commit is contained in:
jules 2014-02-06 11:27:23 +00:00
parent 1fc549f666
commit e22e536626
4 changed files with 6 additions and 6 deletions

View file

@ -281,7 +281,7 @@ namespace VSTHelpers
config->getValue (Ids::useRuntimeLibDLL) = true;
if (config->getValue (Ids::postbuildCommand).toString().isEmpty())
config->getValue (Ids::postbuildCommand) = "copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3";
config->getValue (Ids::postbuildCommand) = "copy /Y \"$(OutDir)$(TargetFileName)\" \"$(OutDir)$(TargetName).vst3\"";
}
}
}

View file

@ -66,7 +66,7 @@
<Tool Name="VCAppVerifierTool"/>
<Tool Name="VCPostBuildEventTool"
Description="Post-build"
CommandLine="copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3"/>
CommandLine="copy /Y &quot;$(OutDir)$(TargetFileName)&quot; &quot;$(OutDir)$(TargetName).vst3&quot;"/>
</Configuration>
<Configuration Name="Release|Win32"
OutputDirectory=".\Release"
@ -127,7 +127,7 @@
<Tool Name="VCAppVerifierTool"/>
<Tool Name="VCPostBuildEventTool"
Description="Post-build"
CommandLine="copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3"/>
CommandLine="copy /Y &quot;$(OutDir)$(TargetFileName)&quot; &quot;$(OutDir)$(TargetName).vst3&quot;"/>
</Configuration>
</Configurations>
<References/>

View file

@ -66,7 +66,7 @@
<Tool Name="VCAppVerifierTool"/>
<Tool Name="VCPostBuildEventTool"
Description="Post-build"
CommandLine="copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3"/>
CommandLine="copy /Y &quot;$(OutDir)$(TargetFileName)&quot; &quot;$(OutDir)$(TargetName).vst3&quot;"/>
</Configuration>
<Configuration Name="Release|Win32"
OutputDirectory=".\Release"
@ -127,7 +127,7 @@
<Tool Name="VCAppVerifierTool"/>
<Tool Name="VCPostBuildEventTool"
Description="Post-build"
CommandLine="copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3"/>
CommandLine="copy /Y &quot;$(OutDir)$(TargetFileName)&quot; &quot;$(OutDir)$(TargetName).vst3&quot;"/>
</Configuration>
</Configurations>
<References/>

View file

@ -1460,7 +1460,7 @@ private:
#ifndef JucePlugin_Vst3Category
#if JucePlugin_IsSynth
#define JucePlugin_Vst3Category Vst::PlugType::kInstrument
#define JucePlugin_Vst3Category Vst::PlugType::kInstrumentSynth
#else
#define JucePlugin_Vst3Category Vst::PlugType::kFx
#endif