From: Samuli Piippo Date: Thu, 26 Jan 2012 11:53:00 +0000 (+0100) Subject: Exclude helloconcurrent when QtConcurrent is not configured X-Git-Tag: qt-v5.0.0-alpha1~1322 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8156cab81690526adffa22214657fc1c6563b8b;p=profile%2Fivi%2Fqtbase.git Exclude helloconcurrent when QtConcurrent is not configured Task-number: QTBUG-23874 Change-Id: I374a08ce947e804ebb1da08c413e340e4719d9d0 Reviewed-by: Jonas Gastal Reviewed-by: Oswald Buddenhagen --- diff --git a/examples/tutorials/threads/threads.pro b/examples/tutorials/threads/threads.pro index 64392f8..a95ecca 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