Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

ellapollack/juce-plugin-ci

Repository files navigation

DEPRECATED (use Pamplejuce instead)

(June 2023) I am deciding to deprecate this repository because I am now a full-time high school teacher and don't have to time to maintain it anymore. Also because @sudara's Pamplejuce repository is a much more thorough and up-to-date template for JUCE projects.


Use this template to start a new JUCE audio plugin project in a Github repository.

It contains:

  1. the boilerplate audio plugin code from JUCE/examples/CMake/AudioPlugin
  2. a CMake FetchContent call to automatically download and link the JUCE library
  3. a GitHub Actions workflow which automatically builds (with CMake) and tests (with CTest) the audio plugin for 64-bit MacOS, Windows, and Linux platforms on every push

To publish a new Release, tag your commit with a version number before pushing:

git tag v1.0.0
git push origin main --tags

Building from the command line

cmake .
cmake --build build

Building in Visual Studio Code