Skip to content

Get Started

ygrabit edited this page Dec 20, 2017 · 5 revisions

Get started

Get the source code from GitHub

git clone --recursive https://github.com/steinbergmedia/vst3sdk.git

Build the examples on Linux

mkdir build
cd build
cmake ../vst3sdk
make  (or alternatively cmake --build .)

Build the examples on macOS

mkdir build
cd build
cmake -GXcode ../vst3sdk
xcodebuild  (or alternatively cmake --build .)

Build the examples on Windows

mkdir build
cd build
cmake.exe -G"Visual Studio 15 2017 Win64" ../vst3sdk
msbuild.exe vstsdk.sln   (or alternatively cmake --build .)