- install development files for xorg, googletest/libgtest/libgmock, alsa if necessary (e.g. Debian/Raspbian:
apt-get install xorg-dev googletest libgtest-dev libgmock-dev libasound2-dev) - clone JUCE repo and checkout
developbranchmkdir ~/src ; cd ~/srcgit clone https://github.com/juce-framework/JUCE.gitgit checkout develop
- create installation folder and build/install via cmake
mkdir -p ~/local/jucemkdir build ; cd buildcmake -DCMAKE_INSTALL_PREFIX=~/local/juce ..make ; make install
- tell cmake where to find JUCE (replace
X.Y.Zwith correct version)export JUCE_DIR=/home/aaa/local/juce/lib/cmake/JUCE-X.Y.Z
mkdir build ; cd build- generate makefiles via cmake (to develop consider passing
Debug) cmake -DCMAKE_BUILD_TYPE=Release ..makecd ..- run the application: ``