summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <[email protected]>2012-01-26 12:53:00 +0100
committerQt by Nokia <[email protected]>2012-02-05 17:49:10 +0100
commitc8156cab81690526adffa22214657fc1c6563b8b (patch)
treed8e1b174a23579c6b5fc4c4dd289e0c339182918
parent92b112475247d42b221b03953b11b060fdf35538 (diff)
Exclude helloconcurrent when QtConcurrent is not configured
Task-number: QTBUG-23874 Change-Id: I374a08ce947e804ebb1da08c413e340e4719d9d0 Reviewed-by: Jonas Gastal <[email protected]> Reviewed-by: Oswald Buddenhagen <[email protected]>
-rw-r--r--examples/tutorials/threads/threads.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/tutorials/threads/threads.pro b/examples/tutorials/threads/threads.pro
index 64392f80884..a95eccaaa09 100644
--- a/examples/tutorials/threads/threads.pro
+++ b/examples/tutorials/threads/threads.pro
@@ -2,8 +2,9 @@ TEMPLATE = subdirs
SUBDIRS = hellothread \
hellothreadpool \
- helloconcurrent \
clock \
movedobject
+contains(QT_CONFIG, concurrent): SUBDIRS += helloconcurrent
+
QT += widgets