vst3sdk

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

commit a50fcc707949219a5319fbb1b0c784ae56ee70f6
parent d9eda1918e5bed70c51399c51a610ce9733f774a
Author: scheffle <[email protected]>
Date:   Mon, 11 Jun 2018 17:17:44 +0200

vstsdk3610_11_06_2018_build_37

Diffstat:
MCMakeLists.txt | 1+
MREADME.md | 86++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------
AVST3_License_Agreement.pdf | 0
AVST3_Usage_Guidelines.pdf | 0
4 files changed, 67 insertions(+), 20 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -56,6 +56,7 @@ setupAaxSupport() set(SDK_IDE_LIBS_FOLDER FOLDER "Libraries") #---Add base libraries--------------------------- +set(VST_SDK TRUE) # used for Base module which provides only a subset of Base for VST-SDK add_subdirectory(base) add_subdirectory(public.sdk) add_subdirectory(public.sdk/source/vst/interappaudio) diff --git a/README.md b/README.md @@ -1,12 +1,12 @@ -# Welcome to VST SDK 3.6.9 +# Welcome to VST SDK 3.6.10 ## Table Of Contents 1. [The VST SDK package](#100) 1. [System requirements](#200) 1. [About VST Plug-ins in general](#300) 1. [About VST 3](#400) -1. [How to build VST 3](#How_to_build_VST_3) -1. [License & Usage guidelines](#license_&_usage_guidelines) +1. [How to build VST 3](#500) +1. [License & Usage guidelines](#600) <div id='100'/> @@ -16,7 +16,11 @@ - AAX, AU and VST 2 wrappers - VST 3 Plug-ins Examples -The full VST 3 SDK is available [here!](https://www.steinberg.net/en/company/developers.html). It contains a VST 3 Plug-in Test Host Application/Validator. +The full VST 3 SDK is available [here!](https://www.steinberg.net/en/company/developers.html). It contains : +- a VST 3 Plug-in Test Host Application/Validator, +- the <b>Steinberg VST 3 Plug-In SDK Licensing Agreement</b> that you have to sign if you want to develop or host VST 3 Plug-Ins. +- the <b>Steinberg VST 2 Plug-In SDK Licensing Agreement</b> that you have to sign if you want to develop or host VST 2 Plug-Ins. + <div id='200'/> @@ -25,7 +29,7 @@ The full VST 3 SDK is available [here!](https://www.steinberg.net/en/company/dev Supported OS: - Microsoft Windows 7-10 -- Apple OSX 10.7-10.13 +- Apple OSX 10.9-10.13 - Apple iOS 8-9 - Linux (Beta version) @@ -107,38 +111,80 @@ Some more features implemented specifically for developers include: --- <div id='500'/> -## How to build +## How to build VST3 ### Get the source code from GitHub <pre>git clone --recursive https://github.com/steinbergmedia/vst3sdk.git </pre> +### Adding VST2 version +In order to build a VST2 version of the Plug-in and a VST3 at the same time, you need to copy the VST2 folder into the VST3 folder, simply run the following commands: +- for macOS: +<pre> +cd TheFolderWhereYouDownloadTheSDK +./copy_vst2_to_vst3_sdk.sh +</pre> +- for Windows: +<pre> +cd TheFolderWhereYouDownloadTheSDK +copy_vst2_to_vst3_sdk.bat +</pre> + ### Build the examples on Linux +- Create a folder for the build and move to this folder (using cd): +<pre> + mkdir build + cd build +</pre> +- Generate the Solution/Projects: provide the path of the Project where CMakeLists.txt is located: +<pre> + cmake ../vst3sdk +</pre> +- Now you can build the Plug-in: <pre> -mkdir build -cd build -cmake ../vst3sdk -make (or alternatively cmake --build .) + make + (or alternatively for example for release) + cmake --build . --config Release </pre> ### Build the examples on macOS +- Create a folder for the build and move to this folder (using cd): <pre> -mkdir build -cd build -cmake -GXcode ../vst3sdk -xcodebuild (or alternatively cmake --build .) + mkdir build + cd build +</pre> +- Generate the Solution/Projects: provide the path of the Project where CMakeLists.txt is located: +<pre> + For XCode: + cmake -GXcode ../vst3sdk + Without XCode (here debug variant): + cmake -DCMAKE_BUILD_TYPE=Debug ../ +</pre> +- Now you can build the Plug-in (you can use XCode too): +<pre> + xcodebuild + (or alternatively for example for release) + cmake --build . --config Release </pre> ### Build the examples on Windows +- Create a folder for the build and move to this folder (using cd): +<pre> + mkdir build + cd build +</pre> +- Generate the Solution/Projects: provide the path of the Project where CMakeLists.txt is located: +<pre> + cmake.exe -G"Visual Studio 15 2017 Win64" ../vst3sdk +</pre> +- Now you can build the Plug-in (you can use Visual Studio too): <pre> -mkdir build -cd build -cmake.exe -G"Visual Studio 15 2017 Win64" ../vst3sdk -msbuild.exe vstsdk.sln (or alternatively cmake --build .) + msbuild.exe vstsdk.sln + (or alternatively for example for release) + cmake --build . --config Release </pre> ### Build using cmake-gui -<pre> * start the cmake-gui Application * "Browse Source...": select the folder VST3_SDK * "Browse Build...": select a folder where the outputs (projects/...) will be created. Typically a folder named "build" @@ -146,8 +192,8 @@ msbuild.exe vstsdk.sln (or alternatively cmake --build .) * Press "Configure" * Press "Generate" and the project will be created -</pre> --- +<div id='600'/> ## License & Usage guidelines More details are found at [www.steinberg.net/sdklicenses_vst3](http://www.steinberg.net/sdklicenses_vst3) \ No newline at end of file diff --git a/VST3_License_Agreement.pdf b/VST3_License_Agreement.pdf Binary files differ. diff --git a/VST3_Usage_Guidelines.pdf b/VST3_Usage_Guidelines.pdf Binary files differ.