vst3sdk

VST3 Plug-In SDK
Log | Files | Refs | Submodules | README

commit 05c4a9763f311a58fe3f34b68a199e5eea92e2b4
parent 56e4b2a644be164c5d324e8bc9de55b964b0f102
Author: ygrabit <[email protected]>
Date:   Tue,  6 Sep 2022 11:14:21 +0200

VST SDK 3.7.6

Diffstat:
MCMakeLists.txt | 76++++++++++++++++++++++++++++++----------------------------------------------
MVST3_License_Agreement.pdf | 0
2 files changed, 30 insertions(+), 46 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -22,7 +22,7 @@ include(SMTG_VST3_SDK) # SDK Project #------------------------------------------------------------------------------- project(vstsdk - VERSION 3.7.5 + VERSION 3.7.6 DESCRIPTION "Steinberg VST 3 Software Development Kit" HOMEPAGE_URL "https://www.steinberg.net" ) @@ -51,8 +51,7 @@ endif() # Here you can define where the VSTGUI is located if(SMTG_ADD_VSTGUI) - set(SMTG_VSTGUI_ROOT "${ROOT}") - smtg_enable_vstgui_support() + smtg_enable_vstgui_support(VSTGUI_SOURCE_DIR "${ROOT}/vstgui4") endif(SMTG_ADD_VSTGUI) include_directories(${ROOT} ${SDK_ROOT}) @@ -123,66 +122,51 @@ endif(SMTG_ADD_MYPLUGINS_SRC_PATH) if(SMTG_ADD_VST3_PLUGINS_SAMPLES) set(SDK_IDE_PLUGIN_EXAMPLES_FOLDER FOLDER "PlugInExamples") add_subdirectory(public.sdk/samples/vst) - add_subdirectory(public.sdk/source/vst/auwrapper/again) add_subdirectory(public.sdk/source/vst/auv3wrapper) endif(SMTG_ADD_VST3_PLUGINS_SAMPLES) #------------------------------------------------------------------------------- # IDE sorting #------------------------------------------------------------------------------- -set_target_properties(sdk - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} -) -set_target_properties(sdk_common - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} -) -set_target_properties(sdk_hosting - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} -) -set_target_properties(base - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} -) -set_target_properties(pluginterfaces - PROPERTIES +include(SMTG_CustomModuleTarget) + +set_property( + TARGET + sdk + sdk_common + sdk_hosting + base + pluginterfaces + cmake_modules + cmake_VST_modules + PROPERTY ${SDK_IDE_LIBS_FOLDER} ) + if(TARGET base_ios) - set_target_properties(base_ios - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} - ) - set_target_properties(pluginterfaces_ios - PROPERTIES + set_property( + TARGET + base_ios + pluginterfaces_ios + PROPERTY ${SDK_IDE_LIBS_FOLDER} ) -endif(TARGET base_ios) +endif() if(SMTG_ADD_VSTGUI) - set_target_properties(vstgui - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} - ) - set_target_properties(vstgui_support - PROPERTIES - ${SDK_IDE_LIBS_FOLDER} - ) - set_target_properties(vstgui_uidescription - PROPERTIES + set_property( + TARGET + vstgui + vstgui_support + vstgui_uidescription + PROPERTY ${SDK_IDE_LIBS_FOLDER} ) - + if(TARGET vstgui_standalone) set_target_properties(vstgui_standalone PROPERTIES ${SDK_IDE_LIBS_FOLDER} ) - endif(TARGET vstgui_standalone) -endif(SMTG_ADD_VSTGUI) - -include(SMTG_CustomModuleTarget) -set_target_properties(cmake_modules PROPERTIES ${SDK_IDE_LIBS_FOLDER}) -set_target_properties(cmake_VST_modules PROPERTIES ${SDK_IDE_LIBS_FOLDER}) + endif() +endif() diff --git a/VST3_License_Agreement.pdf b/VST3_License_Agreement.pdf Binary files differ.