summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCorentin Jabot <corentinjabot@gmail.com>2012-07-28 14:39:28 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-22 16:40:53 +0200
commit456590a6e2c5952abfed95d1f00a515fa5c2ab89 (patch)
tree6b2c58f534b76dddabad1ef46a328c71cbbdf8f8
parentb636990bc082d37fd70bf48dfc8b30c766c6ca25 (diff)
The qt quick imports are build only if qtdeclarative is present
If the declarative module is not present, the qtquick/qml components will not be build Change-Id: I5106bc85a149df74ced5e2b0aa9510fcf789a3ef Reviewed-by: Jamey Hicks <jamey.hicks@nokia.com>
-rw-r--r--src/src.pro4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro
index ae3b872a..ed85fd22 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,3 +1,5 @@
TEMPLATE = subdirs
CONFIG += ordered
-SUBDIRS += 3rdparty jsonstream clientcompat partition client daemon imports
+SUBDIRS += 3rdparty jsonstream clientcompat partition client daemon
+
+!isEmpty(QT.quick.name): SUBDIRS += imports