An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Vst3VisualStudioExample
A simple windows VST3 example plugin using Visual Studio

The 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.