Your one-stop shop for JUCE modules, tools, assets and resources
A template for creating an audio plug-in using JUCE 7/8 and CMake that can be used as a drop-in replacement for Projucer.
.jucer project.To learn how to replace a Projucer project with this template, see the Migrating from Projucer guide.
To generate an Xcode project, run:
cmake -B Build -G Xcode -D CMAKE_OSX_ARCHITECTURES=arm64\;x86_64 -D CMAKE_OSX_DEPLOYMENT_TARGET=10.15
The -D CMAKE_OSX_ARCHITECTURES=arm64\;x86_64 flag is required to build universal binaries.
The -D CMAKE_OSX_DEPLOYMENT_TARGET=10.15 flag sets the minimum MacOS version to be supported.
To generate a Visual Studio 2026 (18) project, run:
cmake -B Build -G "Visual Studio 18 2026"
To build the generated IDE project from the command line, run:
cmake --build Build --config Debug
Based on the JUCE/examples/CMake/AudioPlugin template.
Inspired by:
Something wrong with this product?
ReportAre you the owner of this product?
Request Ownership