blob: b8a7e4e74272e0fbc4079208f7dfdb8a8872f49d (
plain)
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
|
TEMPLATE = subdirs
CONFIG += ordered
QT += core gui
# aggregation and extensionsystem are directly in src.pro
# because of dependencies of app
SUBDIRS = \
3rdparty \
utils \
utils/process_stub.pro \
languageutils \
symbianutils \
cplusplus \
qmljs \
qmldebug \
glsl \
qmleditorwidgets \
qtcomponents/styleitem \
ssh \
zeroconf
win32:SUBDIRS += utils/process_ctrlc_stub.pro
# Windows: Compile Qt Creator CDB extension if Debugging tools can be detected.
win32 {
include(qtcreatorcdbext/cdb_detect.pri)
exists($$CDB_PATH):SUBDIRS += qtcreatorcdbext
}
|