[2] | 1 | TEMPLATE = 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] | 31 | mac {
|
---|
| 32 | SUBDIRS += macdeployqt
|
---|
| 33 | }
|
---|
| 34 |
|
---|
[561] | 35 | embedded:SUBDIRS += kmap2qmap
|
---|
| 36 |
|
---|
[2] | 37 | contains(QT_CONFIG, dbus):SUBDIRS += qdbus
|
---|
[769] | 38 | # We don't need these command line utilities on embedded platforms.
|
---|
| 39 | !wince*:!symbian:contains(QT_CONFIG, xmlpatterns): SUBDIRS += xmlpatterns xmlpatternsvalidator
|
---|
[2] | 40 | embedded: SUBDIRS += makeqpf
|
---|
| 41 |
|
---|
|
---|