diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-04-23 13:03:43 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-04-23 13:16:38 (GMT) |
commit | 7fec4bb21bc78760bd1603efb1b62453ac743e01 (patch) | |
tree | 3fe48b003d226c5295a3b452964cee1dff1504eb /tests | |
parent | a5c7f0c0ea7dc47cf7cbd740af3dc6b241d68ffb (diff) | |
download | Qt-7fec4bb21bc78760bd1603efb1b62453ac743e01.zip Qt-7fec4bb21bc78760bd1603efb1b62453ac743e01.tar.gz Qt-7fec4bb21bc78760bd1603efb1b62453ac743e01.tar.bz2 |
fix pro file
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qlocalsocket/test/test.pro | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/auto/qlocalsocket/test/test.pro b/tests/auto/qlocalsocket/test/test.pro index 8ce7c50..7befdf9 100644 --- a/tests/auto/qlocalsocket/test/test.pro +++ b/tests/auto/qlocalsocket/test/test.pro @@ -1,7 +1,5 @@ load(qttest_p4) -include(../src/src.pri) - DEFINES += QLOCALSERVER_DEBUG DEFINES += QLOCALSOCKET_DEBUG !wince*: { @@ -14,14 +12,16 @@ DEFINES += QLOCALSOCKET_DEBUG QT = core network SOURCES += ../tst_qlocalsocket.cpp -TARGET = ../tst_qlocalsocket -win32 { +TARGET = tst_qlocalsocket +CONFIG(debug_and_release) { CONFIG(debug, debug|release) { - TARGET = ../../debug/tst_qlocalsocket -} else { - TARGET = ../../release/tst_qlocalsocket + DESTDIR = ../debug + } else { + DESTDIR = ../release } +} else { + DESTDIR = .. } wince* { |