summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/win32
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius@trolltech.com>2009-06-29 11:38:13 (GMT)
committerMarius Storm-Olsen <marius@trolltech.com>2009-06-30 08:14:53 (GMT)
commit9b532a999944c70c2e8f57d9156c1887867ad9f1 (patch)
treeebebcbab05b1432be0a56eebb2447028297c4181 /mkspecs/features/win32
parent79f63138b49584fc1ee297811b471294ebd83b6b (diff)
downloadQt-9b532a999944c70c2e8f57d9156c1887867ad9f1.zip
Qt-9b532a999944c70c2e8f57d9156c1887867ad9f1.tar.gz
Qt-9b532a999944c70c2e8f57d9156c1887867ad9f1.tar.bz2
Support the -qtlibinfix parameter already on Unix/Mac
The configuration option was not added to the Windows configure. Reviewed-by: hjk
Diffstat (limited to 'mkspecs/features/win32')
-rw-r--r--mkspecs/features/win32/windows.prf4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/win32/windows.prf b/mkspecs/features/win32/windows.prf
index f037c1a..cf81388 100644
--- a/mkspecs/features/win32/windows.prf
+++ b/mkspecs/features/win32/windows.prf
@@ -6,8 +6,8 @@ contains(TEMPLATE, ".*app"){
qt:for(entryLib, $$list($$unique(QMAKE_LIBS_QT_ENTRY))) {
isEqual(entryLib, -lqtmain): {
- CONFIG(debug, debug|release): QMAKE_LIBS += $${entryLib}d
- else: QMAKE_LIBS += $${entryLib}
+ CONFIG(debug, debug|release): QMAKE_LIBS += $${entryLib}$${QT_LIBINFIX}d
+ else: QMAKE_LIBS += $${entryLib}$${QT_LIBINFIX}
} else {
QMAKE_LIBS += $${entryLib}
}