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 cfa8f2c2e963046bc7f080a8616b7228f144e865
parent 1b77d5e67e2f07f413af28e2888c1be7eaa4a73c
Author: dsp56300 <lyve2909+githubdsp56300@gmail.com>
Date:   Wed, 14 Jul 2021 21:40:49 +0200

do not attempt to install VST2 version of juce plugin if not being built

Diffstat:
MCMakeLists.txt | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -25,12 +25,11 @@ add_subdirectory(source/ctrlr/JUCE) # ----------------- Juce based audio plugin - set_property(GLOBAL PROPERTY USE_FOLDERS YES) if(${PROJECT_NAME}_BUILD_JUCEPLUGIN) set(JUCE_ENABLE_MODULE_SOURCE_GROUPS ON CACHE BOOL "" FORCE) add_subdirectory(source/jucePlugin) - if(UNIX AND NOT APPLE) + if(UNIX AND NOT APPLE AND JUCE_GLOBAL_VST2_SDK_PATH) install(TARGETS jucePlugin_VST LIBRARY DESTINATION /usr/local/lib/lxvst/ COMPONENT plugin) endif()