diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-09-23 08:52:35 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-09-23 08:55:19 (GMT) |
commit | 05647bc3a8d5085885dca398682b8b315bc79e6c (patch) | |
tree | 7ce1cc9eb27bdf5912a84f980c774d188a6ca1b9 /tests/auto/qaudioinput | |
parent | 4d7b6f75073eb2559cbc3e63db6743641539ac4e (diff) | |
download | Qt-05647bc3a8d5085885dca398682b8b315bc79e6c.zip Qt-05647bc3a8d5085885dca398682b8b315bc79e6c.tar.gz Qt-05647bc3a8d5085885dca398682b8b315bc79e6c.tar.bz2 |
tests/auto/qaudioinput deployment rules fixed for Windows CE
Reviewed-by: TrustMe
Diffstat (limited to 'tests/auto/qaudioinput')
-rw-r--r-- | tests/auto/qaudioinput/qaudioinput.pro | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/auto/qaudioinput/qaudioinput.pro b/tests/auto/qaudioinput/qaudioinput.pro index 8a03749..f545a11 100644 --- a/tests/auto/qaudioinput/qaudioinput.pro +++ b/tests/auto/qaudioinput/qaudioinput.pro @@ -1,7 +1,15 @@ load(qttest_p4) -DEFINES += SRCDIR=\\\"$$PWD/\\\" - SOURCES += tst_qaudioinput.cpp QT = core multimedia + +wince* { + deploy.sources += 4.wav + DEPLOYMENT = deploy + DEFINES += SRCDIR=\\\"\\\" + QT += gui +} else { + DEFINES += SRCDIR=\\\"$$PWD/\\\" +} + |