[2] | 1 | TEMPLATE = subdirs
|
---|
| 2 | SUBDIRS = \
|
---|
| 3 | demos_shared \
|
---|
| 4 | demos_deform \
|
---|
| 5 | demos_gradients \
|
---|
| 6 | demos_pathstroke \
|
---|
| 7 | demos_affine \
|
---|
| 8 | demos_composition \
|
---|
| 9 | demos_books \
|
---|
| 10 | demos_interview \
|
---|
| 11 | demos_mainwindow \
|
---|
| 12 | demos_spreadsheet \
|
---|
| 13 | demos_textedit \
|
---|
| 14 | demos_chip \
|
---|
| 15 | demos_embeddeddialogs \
|
---|
| 16 | demos_undo
|
---|
| 17 |
|
---|
| 18 | contains(QT_CONFIG, opengl):!contains(QT_CONFIG, opengles1):!contains(QT_CONFIG, opengles1cl):!contains(QT_CONFIG, opengles2):{
|
---|
| 19 | SUBDIRS += demos_boxes
|
---|
| 20 | }
|
---|
| 21 |
|
---|
| 22 | mac*: SUBDIRS += demos_macmainwindow
|
---|
| 23 | wince*|embedded: SUBDIRS += embedded
|
---|
| 24 |
|
---|
[491] | 25 | !contains(QT_EDITION, Console):!cross_compile:!embedded:!wince*:SUBDIRS += demos_arthurplugin
|
---|
[2] | 26 |
|
---|
| 27 | !cross_compile:{
|
---|
| 28 | contains(QT_BUILD_PARTS, tools):{
|
---|
[515] | 29 | !wince*:!os2:SUBDIRS += demos_sqlbrowser demos_qtdemo
|
---|
| 30 | wince*|os2: SUBDIRS += demos_sqlbrowser
|
---|
[2] | 31 | }
|
---|
| 32 | }
|
---|
| 33 | contains(QT_CONFIG, phonon)!static:SUBDIRS += demos_mediaplayer
|
---|
| 34 | contains(QT_CONFIG, webkit):contains(QT_CONFIG, svg):SUBDIRS += demos_browser
|
---|
| 35 |
|
---|
| 36 | # install
|
---|
| 37 | sources.files = README *.pro
|
---|
| 38 | sources.path = $$[QT_INSTALL_DEMOS]
|
---|
| 39 | INSTALLS += sources
|
---|
| 40 |
|
---|
| 41 | demos_chip.subdir = chip
|
---|
| 42 | demos_embeddeddialogs.subdir = embeddeddialogs
|
---|
| 43 | demos_shared.subdir = shared
|
---|
| 44 | demos_deform.subdir = deform
|
---|
| 45 | demos_gradients.subdir = gradients
|
---|
| |
---|