source: trunk/tools/tools.pro@ 846

Last change on this file since 846 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 1.4 KB
RevLine 
[2]1TEMPLATE = subdirs
2
[846]3!contains(QT_CONFIG, no-gui) {
4 no-png {
5 message("Some graphics-related tools are unavailable without PNG support")
6 } else {
7 symbian {
8 SUBDIRS = designer
9 } else:wince* {
10 SUBDIRS = qtestlib designer
11 } else {
12 SUBDIRS = assistant \
13 pixeltool \
14 porting \
15 qtestlib \
16 qttracereplay
17 contains(QT_EDITION, Console) {
18 SUBDIRS += designer/src/uitools # Linguist depends on this
19 } else {
20 SUBDIRS += designer
21 }
22 }
23 unix:!mac:!embedded:contains(QT_CONFIG, qt3support):SUBDIRS += qtconfig
24 win32:!wince*:SUBDIRS += activeqt
25 }
26 contains(QT_CONFIG, declarative):SUBDIRS += qml
[2]27}
28
[846]29!wince*:!symbian:SUBDIRS += linguist
30
[2]