forked from juce-framework/JUCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
46 lines (27 loc) · 2.05 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
__NOTE__: Changes in the Projucer exporter code from JUCE 4 to JUCE 5 made it quite difficult to adapt my patches. Unfortunately, I will not have enough time to update the QtCreator exporter patches.
# JUCE with QtCreator exporter
This fork of JUCE includes an additional Projucer exporter to create QtCreator projects. No further changes were made. New JUCE releases will be regularly merged to keep the sources up to date.
Instructions:
* Get the sources from this repository and compile the Projucer as usual.
* Open a JUCE project with the patched Projucer and add a new exporter for QtCreator. Save the project.
* Open the created project file `Builds/QtCreator/YOURPROJECT.pro` in the QtCreator.
* Choose a compiler if you are asked so and let QMake configure the project.
* Open the project settings and disable the `Shadow-Build` feature for debug and release mode.
Known problems:
* Windows has a maximum length of 260 characters for relative paths. JUCE projects make heavy use of relative paths and these may become too long and compilation will fail. A simple solution is to set copy-mode for all modules to `copy locally` in the Projucer.
Additionally, you can try to map long base paths to an own drive letter. From a command line run
subst P:\ C:\Your\Project\Folder\Is\Quite\Long
and open your project files in QtCreator directly from the new drive P:\YourProject\Builds\Qtcreator\...
# The JUCE Library
JUCE (Jules' Utility Class Extensions) is an all-encompassing
C++ framework for developing cross-platform software.
It contains pretty much everything you're likely to need to create
most applications, and is particularly well-suited for building
highly-customised GUIs, and for handling graphics and sound.
Most JUCE modules are shared under the GNU Public Licence
(GPLv2, v3, and the AGPLv3). This means that the code can
be freely copied and distributed, and costs nothing to use
in other GPL applications. One module (the juce_core module)
is permissively licensed under the ISC.
For more information, visit the website:
http://www.juce.com