aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qmldevtools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-05-03 19:42:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-08 15:01:47 +0200
commitf8eb03b2832a9019077f1cb0851c08a7a1088a45 (patch)
tree4840df3ddce6a8e1241e0501924ef57507cab0f7 /tests/auto/qmldevtools
parent81b3c4bbb085c9d60dd935e5c74e86988d81dca7 (diff)
fix debug/release library name mixup on mac/win
Task-number: QTBUG-30676 Change-Id: I5c5869ee3050e67390607f94054127bd62ab2ea4 Reviewed-by: Andy Shaw <andy.shaw@digia.com> Reviewed-by: Liang Qi <liang.qi@digia.com>
Diffstat (limited to 'tests/auto/qmldevtools')
-rw-r--r--tests/auto/qmldevtools/compile/compile.pro7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/auto/qmldevtools/compile/compile.pro b/tests/auto/qmldevtools/compile/compile.pro
index 1c65daf909..0ed113a031 100644
--- a/tests/auto/qmldevtools/compile/compile.pro
+++ b/tests/auto/qmldevtools/compile/compile.pro
@@ -1,9 +1,12 @@
option(host_build)
TARGET = tst_compile
-force_bootstrap: \
+force_bootstrap {
QT = bootstrap-private
-else: \
+ !build_pass: CONFIG += release
+} else {
QT = core
+ !build_pass:contains(QT_CONFIG, build_all): CONFIG += release
+}
QT += qmldevtools-private
macx:CONFIG -= app_bundle