From 9895f6efd33de2b257219d22bc8dece62204aa3d Mon Sep 17 00:00:00 2001 From: Charles Yin Date: Mon, 19 Mar 2012 13:40:42 +1000 Subject: [PATCH] Don't change the executable name if only build in debug mode on Windows Change-Id: I298c14d6ea5829d23a4f8b57b9c2f30546e12e80 Reviewed-by: Martin Jones --- tools/qmlplugindump/qmlplugindump.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/qmlplugindump/qmlplugindump.pro b/tools/qmlplugindump/qmlplugindump.pro index 7662fd7..9cda825 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 -- 2.7.4