Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 839 Bytes

README.md

File metadata and controls

27 lines (15 loc) · 839 Bytes

JX11 Synthesizer

This is the source code of the synthesizer JX11, which I implemented following and studying the book "Creating Synthesizer Plug-Ins with C++ and JUCE" by Matthijs Hollemans.

gui

Juce dependency

  • Clone Juce repository from github
  • Modify your local path in CmakeList.txt: add_subdirectory("/your/local/path/JUCE" JUCE)

Generating IDE project

Xcode: cmake -G Xcode -B build

Visual Studio: cmake -B Build -G "Visual Studio 17"

Building

To build the generated IDE project from the command line, run:

cmake --build Build --config Debug

References