summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-11-14 10:16:04 +0100
committerTony Sarajärvi <tony.sarajarvi@qt.io>2017-11-14 11:31:15 +0000
commitbaa79eab7734031569fef9a4c1bf802fc2137f2f (patch)
treea564c52d56a0c9bd6b536fc246808c624bd5a180 /tests
parent5069186722a01ea4f47d13fb79f6939428dcc2e4 (diff)
fix usage with qt 5.6
it doesn't have the new configure system and consequently qtConfig() yet. amends 5069186722a0. Task-number: QTQAINFRA-1559 Change-Id: Idf81fe6e0e52e59f539075b5cc0bbc3f96a58c23 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/postbuild/postbuild.pro6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/postbuild/postbuild.pro b/tests/postbuild/postbuild.pro
index b558acf6..1c949912 100644
--- a/tests/postbuild/postbuild.pro
+++ b/tests/postbuild/postbuild.pro
@@ -5,7 +5,11 @@ SUBDIRS += \
symbols \
guiapplauncher
-!qtConfig(process): SUBDIRS -= headers guiapplauncher
+defined(qtConfig, test) { # true since qt 5.8
+ !qtConfig(process): SUBDIRS -= headers guiapplauncher
+} else {
+ uikit|winrt: SUBDIRS -= headers guiapplauncher
+}
# This test is only valid on linux
!linux: SUBDIRS -= symbols