diff options
Diffstat (limited to 'tests/auto/qtextstream/test/test.pro')
-rw-r--r-- | tests/auto/qtextstream/test/test.pro | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/auto/qtextstream/test/test.pro b/tests/auto/qtextstream/test/test.pro index bae7717..973c011 100644 --- a/tests/auto/qtextstream/test/test.pro +++ b/tests/auto/qtextstream/test/test.pro @@ -17,15 +17,20 @@ contains(QT_CONFIG, qt3support):QT += qt3support QT = core network -wince*: { +wince*|symbian: { addFiles.sources = ../rfc3261.txt ../shift-jis.txt ../task113817.txt ../qtextstream.qrc ../tst_qtextstream.cpp addFiles.path = . res.sources = ../resources res.path = . DEPLOYMENT += addFiles +} + +wince*: { DEFINES += SRCDIR=\\\"\\\" -} else { - DEFINES += SRCDIR=\\\"$$PWD/../\\\" +}else:symbian { + # Symbian can't define SRCDIR meaningfully here +}else { + DEFINES += SRCDIR=\\\"$$PWD/../\\\" } |