Browse Source

Removed extra build-steps in DSP module plugin demo

tags/2021-05-28
hogliux 7 years ago
parent
commit
ba0259fd57
4 changed files with 2 additions and 20 deletions
  1. +0
    -6
      examples/DSP module plugin demo/Builds/VisualStudio2015/DSPModulePluginDemo_SharedCode.vcxproj
  2. +0
    -6
      examples/DSP module plugin demo/Builds/VisualStudio2015/DSPModulePluginDemo_StandalonePlugin.vcxproj
  3. +0
    -6
      examples/DSP module plugin demo/Builds/VisualStudio2015/DSPModulePluginDemo_VST.vcxproj
  4. +2
    -2
      examples/DSP module plugin demo/DSP module plugin demo.jucer

+ 0
- 6
examples/DSP module plugin demo/Builds/VisualStudio2015/DSPModulePluginDemo_SharedCode.vcxproj View File

@@ -101,9 +101,6 @@
<SuppressStartupBanner>true</SuppressStartupBanner>
<OutputFile>$(IntDir)\DSPModulePluginDemo.bsc</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
@@ -146,9 +143,6 @@
<SuppressStartupBanner>true</SuppressStartupBanner>
<OutputFile>$(IntDir)\DSPModulePluginDemo.bsc</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\Source\PluginProcessor.cpp"/>


+ 0
- 6
examples/DSP module plugin demo/Builds/VisualStudio2015/DSPModulePluginDemo_StandalonePlugin.vcxproj View File

@@ -104,9 +104,6 @@
<SuppressStartupBanner>true</SuppressStartupBanner>
<OutputFile>$(IntDir)\DSPModulePluginDemo.bsc</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
@@ -150,9 +147,6 @@
<SuppressStartupBanner>true</SuppressStartupBanner>
<OutputFile>$(IntDir)\DSPModulePluginDemo.bsc</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_Standalone.cpp"/>


+ 0
- 6
examples/DSP module plugin demo/Builds/VisualStudio2015/DSPModulePluginDemo_VST.vcxproj View File

@@ -104,9 +104,6 @@
<SuppressStartupBanner>true</SuppressStartupBanner>
<OutputFile>$(IntDir)\DSPModulePluginDemo.bsc</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
@@ -150,9 +147,6 @@
<SuppressStartupBanner>true</SuppressStartupBanner>
<OutputFile>$(IntDir)\DSPModulePluginDemo.bsc</OutputFile>
</Bscmake>
<PostBuildEvent>
<Command>if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\JuceLibraryCode\include_juce_audio_plugin_client_VST2.cpp"/>


+ 2
- 2
examples/DSP module plugin demo/DSP module plugin demo.jucer View File

@@ -59,10 +59,10 @@
<CONFIGURATIONS>
<CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="x64"
isDebug="1" optimisation="1" targetName="DSPModulePluginDemo"
warningsAreErrors="0" postbuildCommand="if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;"/>
warningsAreErrors="0" postbuildCommand=""/>
<CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="x64"
isDebug="0" optimisation="3" targetName="DSPModulePluginDemo"
useRuntimeLibDLL="0" postbuildCommand="if &quot;$(ProjectName)&quot;==&quot;$(SolutionName)_VST&quot; copy /Y &quot;$(TargetDir)\$(SolutionName).dll&quot; &quot;c:\vstplugins\musical entropy\$(SolutionName).dll&quot;"/>
useRuntimeLibDLL="0" postbuildCommand=""/>
</CONFIGURATIONS>
<MODULEPATHS>
<MODULEPATH id="juce_core" path="../../modules"/>


Loading…
Cancel
Save