A standardized build of JUCE. This is done by compiling upstream JUCE modules as shared libraries and installing them to the system using the Waf meta build system
Note: This is NOT the official JUCE codebase. This project includes the official source as a submodule
Since this uses waf, installation is easy. From the command line:
Installing JUCE modules
cd path/to/libjuce
./waf configure build
./waf install # may require sudo
Installing Debuggable Libraries
./waf configure --debug build
./waf install --no-headers
Complete Installation
See: tools/install.sh
Any options added after the script will be appended to ./waf configure
. For example...
tools/install.sh --prefix=/opt/sdk