Skip to content

Instantly share code, notes, and snippets.

@retorillo
Last active April 16, 2023 12:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save retorillo/ff2a9a16c01010b638d7cacb51e98bc5 to your computer and use it in GitHub Desktop.
Save retorillo/ff2a9a16c01010b638d7cacb51e98bc5 to your computer and use it in GitHub Desktop.

VST 3.x development on Windows 11 without IDE

THIS DOCUMENT IS A WORK IN PROGRESS

Download VST 3.x SDK

Download VST 3.x SDK from here and expand all.

Build mandatory libraries

Run Visual Studio 2022 Command Prompt And fire the following commands.

cd vst-sdk_3.7.7_build-19_2022-12-12\VST_SDK\vst3sdk
cmake.exe -S . -B build -G "Visual Studio 17 2022" -A x64 -DSMTG_CREATE_PLUGIN_LINK=0
cd build
cmake --build . --config Release

Then, libraries appears on VST_SDK\vst3sdk\build\lib\Release.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment