summaryrefslogtreecommitdiffstats
path: root/src/src.pro
diff options
context:
space:
mode:
authorCasper van Donderen <casper.vandonderen@nokia.com>2012-07-06 10:47:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-06 14:08:57 +0200
commit04c25ce79cf781d91b9e78b3420ba54e1701aae0 (patch)
tree1266b33d7dccbe0980924dedad04123f04bd0966 /src/src.pro
parentd8cb387c3d11ea33e237d2815e39bdaccc29bb1a (diff)
Make it possible to compile Qt3D without QML/Quick.
The C++ implementation of Qt3D could not be compiled without also having installed QtQML and QtQuick. This change allows the compilation of the non-QML part of Qt3D separately. Change-Id: I791a03a0f0e1118f3ec20b77be327786148b8923 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Diffstat (limited to 'src/src.pro')
-rw-r--r--src/src.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro
index 370362fdf..58a717153 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,3 +1,4 @@
TEMPLATE = subdirs
CONFIG += ordered
-SUBDIRS = threed quick3d imports
+SUBDIRS = threed
+!isEmpty(QT.qml.name): SUBDIRS += quick3d imports