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 99c6d48ba5b0d45a24280ea6dc7286707fd3fcd9
parent ea9ab044edad6d66e999bc9c1299c26f7e7d1fd8
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed, 17 Apr 2024 23:02:09 +0200

use FST sdk if there is no VST2 sdk

Diffstat:
Msource/findvst2.cmake | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/source/findvst2.cmake b/source/findvst2.cmake @@ -11,6 +11,8 @@ if(NOT EXISTS ${VST2SDK_TESTFILE}) endif() endif() -if(EXISTS ${VST2SDK_TESTFILE}) - set(JUCE_GLOBAL_VST2_SDK_PATH ${VST2SDK_FOLDER}) +if(NOT EXISTS ${VST2SDK_TESTFILE}) + set(VST2SDK_FOLDER ${CMAKE_CURRENT_LIST_DIR}/fst/) endif() + +set(JUCE_GLOBAL_VST2_SDK_PATH ${VST2SDK_FOLDER})