From: Charles Yin Date: Mon, 19 Mar 2012 03:40:42 +0000 (+1000) Subject: Don't change the executable name if only build in debug mode on Windows X-Git-Tag: qt-v5.0.0-alpha1~99 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9895f6efd33de2b257219d22bc8dece62204aa3d;p=profile%2Fivi%2Fqtdeclarative.git Don't change the executable name if only build in debug mode on Windows Change-Id: I298c14d6ea5829d23a4f8b57b9c2f30546e12e80 Reviewed-by: Martin Jones --- 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