summaryrefslogtreecommitdiffstats
path: root/tools/qtestlib
diff options
context:
space:
mode:
authorRohan McGovern <rohan.mcgovern@nokia.com>2009-05-13 10:33:59 +1000
committerRohan McGovern <rohan.mcgovern@nokia.com>2009-05-13 10:47:04 +1000
commitdde94b1737e9860838c87d3f432cf76de3157ad7 (patch)
tree7457a91ab126b0fee28c188b5b3486f739456514 /tools/qtestlib
parent8a4fbf2edfd88128aeead769adb9842338e09623 (diff)
Fixed compile on Windows in debug-only mode.
A Qt project can't unconditionally do `CONFIG+=release' or `CONFIG+=debug' since the release and debug libraries are named differently on Windows. In this case, CONFIG+=release meant this project was looking for QtSql.lib, but when Qt is configured with `-debug', only QtSqld.lib exists. Reviewed-by: Rhys Weatherley
Diffstat (limited to 'tools/qtestlib')
-rw-r--r--tools/qtestlib/chart/chart.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qtestlib/chart/chart.pro b/tools/qtestlib/chart/chart.pro
index 6f6e6d5d39..7328e5d473 100644
--- a/tools/qtestlib/chart/chart.pro
+++ b/tools/qtestlib/chart/chart.pro
@@ -4,7 +4,7 @@ SOURCES += main.cpp
RESOURCES = $$PWD/chart.qrc
QT += sql xml
-CONFIG += console release
+CONFIG += console
CONFIG -= app_bundle