You need to have CMake installed before continuing. You can either grab it directly off the website or use the package manager of your choice.
You also need the JUCE framework. There are two methods for including JUCE in this project:
- Download JUCE from the website.
- Place the JUCE directory inside the MultiSweep project root folder.
- Open CMakeLists.txt and find the following lines:
# If you don't have JUCE installed globally (see README.md), download JUCE, put
# the JUCE folder in the project root (same directory as this file), comment out
# this line:
find_package(JUCE CONFIG REQUIRED)
# ...and uncomment this line:
# add_subdirectory(JUCE)
- Follow the instructions in the CMakeLists file.
- Download JUCE from the website.
cd
into the JUCE directory.- Execute the following commands in your shell: TODO: install
mkdir build
cd build
cmake .
cmake --build .
JUCE is now installed globally for your machine and can be used in any future projects.
TODO: build