gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit e36085cf4614ff65f6ec130cbec08a6118a7c53e
parent 04a4e3cd3f39868c2f79d922f091a80b8289a998
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 24 Oct 2024 20:41:48 +0200

do not create mac setup script for FX plugins, it overwrites the one we need for the synth version and the synth version can work on both

Diffstat:
Msource/juce.cmake | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/source/juce.cmake b/source/juce.cmake @@ -86,7 +86,9 @@ macro(createJucePlugin targetName productName isSynth plugin4CC binaryDataProjec #juce::juce_recommended_warning_flags ) - createMacSetupScript(${productName}) + if(${isSynth}) + createMacSetupScript(${productName}) + endif() set(clapFeatures "") if(${isSynth})