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:
parent
1fc549f666
commit
e22e536626
4 changed files with 6 additions and 6 deletions
|
|
@ -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\"";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
<Tool Name="VCAppVerifierTool"/>
|
||||
<Tool Name="VCPostBuildEventTool"
|
||||
Description="Post-build"
|
||||
CommandLine="copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3"/>
|
||||
CommandLine="copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).vst3""/>
|
||||
</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 "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).vst3""/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References/>
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
<Tool Name="VCAppVerifierTool"/>
|
||||
<Tool Name="VCPostBuildEventTool"
|
||||
Description="Post-build"
|
||||
CommandLine="copy /Y $(OutDir)$(TargetFileName) $(OutDir)$(TargetName).vst3"/>
|
||||
CommandLine="copy /Y "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).vst3""/>
|
||||
</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 "$(OutDir)$(TargetFileName)" "$(OutDir)$(TargetName).vst3""/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References/>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue