aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmldevtools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-11-01 20:05:49 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-16 10:34:46 +0100
commitd0af156930f80c7133b0190765d21b12a3d4a76a (patch)
tree73928f2519f3ebb63133a9cf1c7582d12f041578 /src/qmldevtools
parent10c9f850c1654c893e4784c4faaefb100830d7bd (diff)
optionally bootstrap QmlDevTools and qmlmin
QmlDevTools is really meant for host tools (the two only ones using this being qmlmin in this repo and lupdate in qttools). qmake magic will take care of bootstrapping them while x-building. Change-Id: I29d921af483659d5455be0ad080dc1a88540c036 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/qmldevtools')
-rw-r--r--src/qmldevtools/qmldevtools.pro9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/qmldevtools/qmldevtools.pro b/src/qmldevtools/qmldevtools.pro
index 3da35264f9..a65ef94da9 100644
--- a/src/qmldevtools/qmldevtools.pro
+++ b/src/qmldevtools/qmldevtools.pro
@@ -1,6 +1,13 @@
+option(host_build)
TARGET = QtQmlDevTools
QT = core
-CONFIG += static internal_module
+CONFIG += static no_module_headers internal_module
+
+MODULE_PRIVATE_INCLUDES = \
+ \$\$QT_MODULE_INCLUDE_BASE \
+ \$\$QT_MODULE_INCLUDE_BASE/QtQml \
+ \$\$QT_MODULE_INCLUDE_BASE/QtQml/$$QT.qml.VERSION \
+ \$\$QT_MODULE_INCLUDE_BASE/QtQml/$$QT.qml.VERSION/QtQml
load(qt_module)