diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-10-07 11:52:57 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-10-07 11:54:07 (GMT) |
commit | 1e6d00443428cc9c714ba7e3cf323b3e2684db79 (patch) | |
tree | 3b49436008028d7a15a2699eaaf3702f05448d42 /tests | |
parent | 0418d438d1c1acfe2c95ee748c1e7c84a0ee8837 (diff) | |
download | Qt-1e6d00443428cc9c714ba7e3cf323b3e2684db79.zip Qt-1e6d00443428cc9c714ba7e3cf323b3e2684db79.tar.gz Qt-1e6d00443428cc9c714ba7e3cf323b3e2684db79.tar.bz2 |
tests/auto/qscriptengine/qscriptengine.pro Windows CE fix
Reviewed-by: TrustMe
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qscriptengine/qscriptengine.pro | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/auto/qscriptengine/qscriptengine.pro b/tests/auto/qscriptengine/qscriptengine.pro index d4c0f4c..dd058a4 100644 --- a/tests/auto/qscriptengine/qscriptengine.pro +++ b/tests/auto/qscriptengine/qscriptengine.pro @@ -1,7 +1,12 @@ load(qttest_p4) QT = core gui script SOURCES += tst_qscriptengine.cpp -!symbian:DEFINES += SRCDIR=\\\"$$PWD\\\" + +wince* { + DEFINES += SRCDIR=\\\"./\\\" +} else:!symbian { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} wince*|symbian*: { addFiles.sources = script |