Skip to content

Commit

Permalink
Don't change the executable name if only build in debug mode on Windows
Browse files Browse the repository at this point in the history
Change-Id: I298c14d6ea5829d23a4f8b57b9c2f30546e12e80
Reviewed-by: Martin Jones <martin.jones@nokia.com>
  • Loading branch information
yinyunqiao authored and Qt by Nokia committed Mar 19, 2012
1 parent 9f07196 commit 9895f6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/qmlplugindump/qmlplugindump.pro
Expand Up @@ -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

0 comments on commit 9895f6e

Please sign in to comment.