diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-25 17:40:35 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-05-25 17:42:22 +0200 |
commit | a731cb5c1765bc3ab71469e86ec0533e5a5c18a5 (patch) | |
tree | f627a5c7835eb4282900e50a31f647ac36f13429 /examples | |
parent | 313e2719ac75eb6c6ff2d84f5cef9f70433d5943 (diff) | |
download | qt4-tools-a731cb5c1765bc3ab71469e86ec0533e5a5c18a5.tar.gz |
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 53008f0595..5d73533dc1 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 |