aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qmlplugindump/qmlplugindump.pro
diff options
context:
space:
mode:
authorCharles Yin <charles.yin@nokia.com>2012-03-19 13:40:42 +1000
committerQt by Nokia <qt-info@nokia.com>2012-03-19 12:02:48 +0100
commit9895f6efd33de2b257219d22bc8dece62204aa3d (patch)
treebaa4e6bfe5b1fc1273c87f7658f78664d20c6a16 /tools/qmlplugindump/qmlplugindump.pro
parent9f071962578bc6fb279935ab15ad0602d67d41ee (diff)
Don't change the executable name if only build in debug mode on Windows
Change-Id: I298c14d6ea5829d23a4f8b57b9c2f30546e12e80 Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tools/qmlplugindump/qmlplugindump.pro')
-rw-r--r--tools/qmlplugindump/qmlplugindump.pro6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/qmlplugindump/qmlplugindump.pro b/tools/qmlplugindump/qmlplugindump.pro
index 7662fd79c8..9cda82588f 100644
--- a/tools/qmlplugindump/qmlplugindump.pro
+++ b/tools/qmlplugindump/qmlplugindump.pro
@@ -23,15 +23,15 @@ macx: QMAKE_INFO_PLIST = Info.plist
contains(QT_CONFIG,debug):contains(QT_CONFIG,release) {
CONFIG += debug_and_release build_all
+ CONFIG(debug, debug|release) {
+ win32: TARGET = $$join(TARGET,,,d)
+ }
} else {
contains(QT_CONFIG,debug): CONFIG += debug
contains(QT_CONFIG,release): CONFIG += release
}
}
-CONFIG(debug, debug|release) {
- win32: TARGET = $$join(TARGET,,,d)
-}
target.path = $$[QT_INSTALL_BINS]
INSTALLS += target