diff options
author | Joona Petrell <joona.t.petrell@nokia.com> | 2010-04-30 05:11:11 (GMT) |
---|---|---|
committer | Joona Petrell <joona.t.petrell@nokia.com> | 2010-05-14 00:45:40 (GMT) |
commit | 1e395c0ab9676995419ae8b20e4d95ad3fe11f31 (patch) | |
tree | 4ec1d34bd8ce057736c9a48d31139696872094c0 /tests/auto/declarative/qdeclarativemoduleplugin | |
parent | 169e7558fd731abdfceed00e5b2ca03c634e8d5d (diff) | |
download | Qt-1e395c0ab9676995419ae8b20e4d95ad3fe11f31.zip Qt-1e395c0ab9676995419ae8b20e4d95ad3fe11f31.tar.gz Qt-1e395c0ab9676995419ae8b20e4d95ad3fe11f31.tar.bz2 |
Symbian build fix to declarative auto and benchmark tests
Task-number: QTBUG-9491
Reviewed-by: Martin Jones
Diffstat (limited to 'tests/auto/declarative/qdeclarativemoduleplugin')
-rw-r--r-- | tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro | 3 | ||||
-rw-r--r-- | tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro b/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro index fc77225..173a302 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro +++ b/tests/auto/declarative/qdeclarativemoduleplugin/plugin/plugin.pro @@ -4,3 +4,6 @@ SOURCES = plugin.cpp QT = core declarative DESTDIR = ../imports/com/nokia/AutoTestQmlPluginType +symbian: { + TARGET.EPOCALLOWDLLDATA=1 +} diff --git a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro index d895ed0..29a1009 100644 --- a/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro +++ b/tests/auto/declarative/qdeclarativemoduleplugin/tst_qdeclarativemoduleplugin.pro @@ -2,4 +2,11 @@ load(qttest_p4) SOURCES = tst_qdeclarativemoduleplugin.cpp QT += declarative CONFIG -= app_bundle -DEFINES += SRCDIR=\\\"$$PWD\\\" +symbian: { + DEFINES += SRCDIR=\".\" + importFiles.sources = data + importFiles.path = + DEPLOYMENT = importFiles +} else { + DEFINES += SRCDIR=\\\"$$PWD\\\" +} |