1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

DSP: Fixed multiple issues with the DSP Oversampling class and updated DSP module plug-in demo code accordingly

This commit is contained in:
hogliux 2017-09-06 10:17:09 +01:00
parent 7a34790388
commit f1d6298206
10 changed files with 352 additions and 239 deletions

View file

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