Skip to content
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 1 KB

README.md

File metadata and controls

33 lines (23 loc) · 1 KB

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