summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2012-11-17 16:40:07 +0100
committerJoerg Bornemann <joerg.bornemann@digia.com>2012-11-19 11:18:20 +0100
commit931d6c78dabffcf8b465c7b6cc48ece6b43ff4b6 (patch)
tree58c68f340b4a36fb232fac9e823dd0dd34cab829 /tests
parentba4121b41dd70abdecfebf3e88872a4873c46688 (diff)
fix TARGET in tests.pro
Be able to run testsd.exe from Qt Creator. Change-Id: I7c3a0fb450cf23a0fc9ffbc98bbf50f269bdd038 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/tests.pro5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tests.pro b/tests/tests.pro
index a600ba1..8472527 100644
--- a/tests/tests.pro
+++ b/tests/tests.pro
@@ -4,9 +4,10 @@ CONFIG += depend_includepath
INCLUDEPATH += ../src/jomlib
DEFINES += SRCDIR=\\\"$$PWD/\\\"
-TARGET = tests
-build_pass:CONFIG(debug, debug|release) {
+CONFIG(debug, debug|release) {
TARGET = testsd
+} else {
+ TARGET = tests
}
PROJECT_BUILD_ROOT=$$OUT_PWD/..