diff options
Diffstat (limited to 'tests/auto/qtextstream/test/test.pro')
-rw-r--r-- | tests/auto/qtextstream/test/test.pro | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/qtextstream/test/test.pro b/tests/auto/qtextstream/test/test.pro new file mode 100644 index 0000000..bae7717 --- /dev/null +++ b/tests/auto/qtextstream/test/test.pro @@ -0,0 +1,31 @@ +load(qttest_p4) +SOURCES += ../tst_qtextstream.cpp + +TARGET = ../tst_qtextstream + +win32 { + CONFIG(debug, debug|release) { + TARGET = ../../debug/tst_qtextstream +} else { + TARGET = ../../release/tst_qtextstream + } +} + +RESOURCES += ../qtextstream.qrc + +contains(QT_CONFIG, qt3support):QT += qt3support +QT = core network + + +wince*: { + addFiles.sources = ../rfc3261.txt ../shift-jis.txt ../task113817.txt ../qtextstream.qrc ../tst_qtextstream.cpp + addFiles.path = . + res.sources = ../resources + res.path = . + DEPLOYMENT += addFiles + DEFINES += SRCDIR=\\\"\\\" +} else { + DEFINES += SRCDIR=\\\"$$PWD/../\\\" +} + + |