https://github.com/mikeoliphant/vst3visualstudioexample
A simple windows VST (VST3) example plugin using Visual Studio
https://github.com/mikeoliphant/vst3visualstudioexample
audio cpp plugin visual-studio vst vst3 windows
Last synced: about 2 months ago
JSON representation
A simple windows VST (VST3) example plugin using Visual Studio
- Host: GitHub
- URL: https://github.com/mikeoliphant/vst3visualstudioexample
- Owner: mikeoliphant
- Created: 2020-11-12T18:03:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-21T22:24:06.000Z (almost 5 years ago)
- Last Synced: 2025-08-09T22:37:53.669Z (about 2 months ago)
- Topics: audio, cpp, plugin, visual-studio, vst, vst3, windows
- Language: C++
- Homepage:
- Size: 24.4 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vst3VisualStudioExample
A simple windows VST3 example plugin using Visual StudioThe is a sample Visual Studio project to build a simple VST3 plugin. It creates a plugin with a single parameter that performs a simple gain adjustment.
# Building
You will need to have CMake (https://cmake.org) installed.
From a shell, run the following:
```bash
git clone --recursive https://github.com/mikeoliphant/Vst3VisualStudioExample
cd Vst3VisualStudioExample
mkdir vstbuild
cd vstbuild
cmake.exe -G "Visual Studio 16 2019" -A x64 ../vst3sdk
```Then you can load "VST3Test.sln" in Visual Studio and build the plugin.