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 6a84a1b5a5ad8565500723dfee8b7e88331987a6
parent 64df05f463b569a1caa4d9eb418ddc3005d95e2a
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Sat,  8 Feb 2025 16:36:49 +0100

exclude FX AU tests because juce audio plugin host does not seem to support it

Diffstat:
Msource/juce.cmake | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/juce.cmake b/source/juce.cmake @@ -242,7 +242,7 @@ macro(createJucePlugin targetName productName isSynth plugin4CC binaryDataProjec if(USE_VST3) addPluginTest(${targetName}_VST3) endif() - if(USE_AU AND APPLE) + if(USE_AU AND APPLE AND ${isSynth}) # Apparently FX AU plugins are not supported by juce audio plugin host addPluginTest(${targetName}_AU) endif() if(USE_LV2)