diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-25 15:40:35 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-25 15:42:22 (GMT) |
commit | a731cb5c1765bc3ab71469e86ec0533e5a5c18a5 (patch) | |
tree | f627a5c7835eb4282900e50a31f647ac36f13429 /examples | |
parent | 313e2719ac75eb6c6ff2d84f5cef9f70433d5943 (diff) | |
download | Qt-a731cb5c1765bc3ab71469e86ec0533e5a5c18a5.zip Qt-a731cb5c1765bc3ab71469e86ec0533e5a5c18a5.tar.gz Qt-a731cb5c1765bc3ab71469e86ec0533e5a5c18a5.tar.bz2 |
don't build examples/qtconcurrent/qtconcurrent.pro by default on Win CE
This examples doesn't make much sense on most Windows CE devices.
Task-number: 254433
Reviewed-by: mauricek
BT: yes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/qtconcurrent/qtconcurrent.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/qtconcurrent/qtconcurrent.pro b/examples/qtconcurrent/qtconcurrent.pro index 53008f0..5d73533 100644 --- a/examples/qtconcurrent/qtconcurrent.pro +++ b/examples/qtconcurrent/qtconcurrent.pro @@ -1,10 +1,13 @@ TEMPLATE = subdirs SUBDIRS = imagescaling \ map \ - progressdialog \ runfunction \ wordcount +!wince* { + SUBDIRS += progressdialog +} + # install target.path = $$[QT_INSTALL_EXAMPLES]/qtconcurrent sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS qtconcurrent.pro README |