Home
Tutorials
Create a VST3 Plug-In for Windows using JUCE
Create a VST3 Plug-In for Windows using JUCE
27.01.2026
Audio
Coding
VST
Windows
- Start
C:\JUCE\Projucer.exe
- The first time Projucer starts with the New Project dialog
- Select Plug-In / Basic as project type
- Set Project Name to
Enkeltochter
- In Modules section click the down arrow to see all modules
- Make sure to activate the following modules
1 juce_audio_basics
2 juce_audio_devices
3 juce_audio_formats
4 juce_audio_plugin_client
5 juce_audio_processors
6 juce_audio_processors_headless
7 juce_audio_utils
8 juce_core
9 juce_data_structures
10 juce_dsp
11 juce_events
12 juce_graphics
13 juce_gui_basics
14 juce_gui_extra
- Create a new file
compile.cmd as
@echo off
mkdir build
cd build
cmake .. -G "Visual Studio 17 2022" -A x64
cmake --build . --config Release