An audio effect which allows you to sequence dsp modules + AI chat bots to assist with understanding how to use the plugin and parameter tuning.
mkdir -p Build && cd Build
cmake .. -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug
- Install the CMake Tools extension in VSCode
- Navigate to the CMake tab
- Open up the Project Outline
- Select your desired Target
- Right Click (or the "Compile" Icon) and Build /
mkdir -p Build && cd Build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
- Install the CMake Tools extension in VSCode
- Navigate to the CMake tab
- Open up the Project Outline
- Select your desired Target
- Right Click (or the "Compile" Icon) and Build /
(optional?) According to my tests, MacOS needs another step in order to make the VST work properly.
codesign --force --deep --sign - ~/Library/Audio/Plug-Ins/VST3/EffectSequencer.vst3
# ^force replaces the temporary ad-hoc signature that CMake generates, If it exists.