aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tools.pro
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2014-06-02 10:16:07 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-06-02 15:36:11 +0200
commit69c6d2648836043e707416c6ae8f3c4b695c906f (patch)
tree878b794ee5fd8f574402d77a2604c8233353aa44 /tools/tools.pro
parent2414f1675eab163b22dcc4e8ded80ed04d06369b (diff)
Disable qmlscene and qmlplugindump when doing static builds
Both of these tools rely on the ability to load plugins in order to function. QmlScene in particular can theoretically be used with just "QtQml" imports and QObjects, but that's not very useful for the _scene_ type of applications qmlscene is intended for ;-). And in a static build it can't load QtQuick. Task-number: QTBUG-39003 Change-Id: I0d4328dc4eb5c4e3153668e65a12f8eb3757f660 Reviewed-by: Gunnar Sletta <gunnar.sletta@jollamobile.com>
Diffstat (limited to 'tools/tools.pro')
-rw-r--r--tools/tools.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools.pro b/tools/tools.pro
index a1b48789b8..fffa4df5c0 100644
--- a/tools/tools.pro
+++ b/tools/tools.pro
@@ -12,7 +12,7 @@ qmlimportscanner.CONFIG = host_build
qmlprofiler \
qmlbundle
qtHaveModule(quick) {
- SUBDIRS += qmlscene qmlplugindump
+ !static: SUBDIRS += qmlscene qmlplugindump
qtHaveModule(widgets): SUBDIRS += qmleasing
}
qtHaveModule(qmltest): SUBDIRS += qmltestrunner