/libjuce

A standardized build/install of JUCE

Primary LanguagePythonGNU General Public License v2.0GPL-2.0

libJUCE

Build Status

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

Building/Installing libJUCE

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