mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
82 lines
3.4 KiB
Markdown
82 lines
3.4 KiB
Markdown

|
|
|
|
JUCE is an open-source cross-platform C++ application framework for creating
|
|
desktop and mobile applications, including VST, VST3, AU, AUv3, AAX and LV2 audio plug-ins
|
|
and plug-in hosts. JUCE can be easily integrated with existing projects via CMake, or can
|
|
be used as a project generation tool via the [Projucer](#the-projucer), which supports
|
|
exporting projects for Xcode (macOS and iOS), Visual Studio, Android Studio,
|
|
and Linux Makefiles as well as containing a source code editor.
|
|
|
|
## Getting Started
|
|
|
|
The JUCE repository contains a [master](https://github.com/juce-framework/JUCE/tree/master)
|
|
and [develop](https://github.com/juce-framework/JUCE/tree/develop) branch. The develop branch
|
|
contains the latest bug fixes and features and is periodically merged into the master
|
|
branch in stable [tagged releases](https://github.com/juce-framework/JUCE/releases)
|
|
(the latest release containing pre-built binaries can be also downloaded from the
|
|
[JUCE website](https://juce.com/get-juce)).
|
|
|
|
JUCE projects can be managed with either the Projucer (JUCE's own project-configuration
|
|
tool) or with CMake.
|
|
|
|
### The Projucer
|
|
|
|
The repository doesn't contain a pre-built Projucer so you will need to build it
|
|
for your platform - Xcode, Visual Studio and Linux Makefile projects are located
|
|
in [extras/Projucer/Builds](/extras/Projucer/Builds) (the minimum system
|
|
requirements are listed in the [minimum system
|
|
requirements](#minimum-system-requirements) section below). The Projucer can
|
|
then be used to create new JUCE projects, view tutorials and run examples. It
|
|
is also possible to include the JUCE modules source code in an existing project
|
|
directly, or build them into a static or dynamic library which can be linked
|
|
into a project.
|
|
|
|
For further help getting started, please refer to the JUCE
|
|
[documentation](https://juce.com/learn/documentation) and
|
|
[tutorials](https://juce.com/learn/tutorials).
|
|
|
|
### CMake
|
|
|
|
Version 3.22 or higher is required. To use CMake, you will need to install it,
|
|
either from your system package manager or from the [official download
|
|
page](https://cmake.org/download/). For comprehensive documentation on JUCE's
|
|
CMake API, see the [JUCE CMake documentation](/docs/CMake%20API.md). For
|
|
examples which may be useful as starting points for new CMake projects, see the
|
|
[CMake examples directory](/examples/CMake).
|
|
|
|
#### Building Examples
|
|
|
|
To use CMake to build the examples and extras bundled with JUCE, simply clone
|
|
JUCE and then run the following commands, replacing "DemoRunner" with the name
|
|
of the target you wish to build.
|
|
|
|
cd /path/to/JUCE
|
|
cmake . -B cmake-build -DJUCE_BUILD_EXAMPLES=ON -DJUCE_BUILD_EXTRAS=ON
|
|
cmake --build cmake-build --target DemoRunner
|
|
|
|
## Minimum System Requirements
|
|
|
|
#### Building JUCE Projects
|
|
|
|
- __C++ Standard__: 17
|
|
- __macOS/iOS__: Xcode 12.4 (Intel macOS 10.15.4, Apple Silicon macOS 11.0)
|
|
- __Windows__: Visual Studio 2019 (Windows 10)
|
|
- __Linux__: g++ 7.0 or Clang 6.0 (for a full list of dependencies, see
|
|
[here](/docs/Linux%20Dependencies.md)).
|
|
- __Android__: Android Studio (NDK 26) on Windows, macOS or Linux
|
|
|
|
#### Deployment Targets
|
|
|
|
- __macOS__: macOS 10.11
|
|
- __Windows__: Windows 10
|
|
- __Linux__: Mainstream Linux distributions
|
|
- __iOS__: iOS 12
|
|
- __Android__: Android 5 - Lollipop (API Level 21)
|
|
|
|
## Contributing
|
|
|
|
Please see our [contribution guidelines](.github/contributing.md).
|
|
|
|
## Licensing
|
|
|
|
See [LICENSE.md](LICENSE.md) for licensing and dependency information.
|