Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.07 KB

README.md

File metadata and controls

25 lines (20 loc) · 1.07 KB

simple non-trivial gate VST3 plugin with AUv3 version (wrapped)

MacOS only

directions:

~/Documents/Code/plugin
+-- gate
|   +-- debug
|   +-- gate (this repo)
+-- sdk
|   +-- CoreAudio
|   +-- vst3sdk
  • cd debug
  • cmake -GXcode -DCMAKE_BUILD_TYPE=Debug ../gate
  • xcodebuild

build will produce a gate.vst3 in ~/Library/Audio/Plug-Ins/VST3/, which is where a VST3-compatible host should be able to find it (try Element for a lightweight VST3 testing host). build will also produce an Audio Unit app extension in debug/bin/Debug/, where it will be automatically registered with pluginkit. counterintuitively compared to auv2, nothing needs to be moved into any library folder.