summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-09-08 13:58:24 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-09-08 14:09:59 (GMT)
commit7499d6c71a6579968189386e1e06e2479c1a6747 (patch)
treece4df8df6d3dbdc027ce8099bb9bf664a039bd52
parente31047fd3afd10e7d2d457b1a1bd4ee9bd48979a (diff)
downloadQt-7499d6c71a6579968189386e1e06e2479c1a6747.zip
Qt-7499d6c71a6579968189386e1e06e2479c1a6747.tar.gz
Qt-7499d6c71a6579968189386e1e06e2479c1a6747.tar.bz2
tst_qbytearray: set SRCDIR to ./ on Windows CE
Reviewed-by: thartman
-rw-r--r--tests/auto/qbytearray/qbytearray.pro11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/auto/qbytearray/qbytearray.pro b/tests/auto/qbytearray/qbytearray.pro
index d14534b..a0c143e 100644
--- a/tests/auto/qbytearray/qbytearray.pro
+++ b/tests/auto/qbytearray/qbytearray.pro
@@ -4,16 +4,17 @@ SOURCES += tst_qbytearray.cpp
QT = core
-wince*|symbian: {
+wince*|symbian {
addFile.sources = rfc3252.txt
addFile.path = .
DEPLOYMENT += addFile
}
-wince: {
- DEFINES += SRCDIR=\\\"\\\"
-} symbian: {
+wince* {
+ DEFINES += SRCDIR=\\\"./\\\"
+} else:symbian {
TARGET.EPOCHEAPSIZE="0x100 0x800000"
} else {
- DEFINES += SRCDIR=\\\"$$PWD/\\\"
+ DEFINES += SRCDIR=\\\"$$PWD/\\\"
}
+