aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@qt.io>2018-05-02 12:03:08 +0200
committerMorten Johan Sørvig <morten.sorvig@qt.io>2018-05-03 12:08:02 +0000
commitb742bf9415b42c6e34fab91d2f407eb23dc8e0da (patch)
treee542774013c9f109dfd56b84ebd5a5d048258ec1
parentee4383c1bef1eb51ab52b0da9db098c4b8c9c7ba (diff)
wasm: speed up qtdeclarative builds
Skip tools which are not in use: qml, qmlint. Continue skipping qmltestrunner. Change-Id: I46cefb2faca67b1ad53a6c0a58ffe8b6ae521370 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
-rw-r--r--tools/tools.pro5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/tools.pro b/tools/tools.pro
index 0c9fa34601..2f32e681b6 100644
--- a/tools/tools.pro
+++ b/tools/tools.pro
@@ -5,8 +5,7 @@ SUBDIRS += \
qmlimportscanner
qtConfig(commandlineparser): SUBDIRS += qmlcachegen
-
-!android|android_app {
+!emscripten:!android|android_app {
SUBDIRS += \
qml \
qmllint
@@ -26,7 +25,7 @@ qtConfig(commandlineparser): SUBDIRS += qmlcachegen
}
qtHaveModule(widgets): SUBDIRS += qmleasing
}
- !emscripten:qtHaveModule(qmltest): SUBDIRS += qmltestrunner
+ qtHaveModule(qmltest): SUBDIRS += qmltestrunner
qtConfig(private_tests): SUBDIRS += qmljs
}