summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/binding
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2010-04-30 05:11:11 (GMT)
committerJoona Petrell <joona.t.petrell@nokia.com>2010-05-14 00:45:40 (GMT)
commit1e395c0ab9676995419ae8b20e4d95ad3fe11f31 (patch)
tree4ec1d34bd8ce057736c9a48d31139696872094c0 /tests/benchmarks/declarative/binding
parent169e7558fd731abdfceed00e5b2ca03c634e8d5d (diff)
downloadQt-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/benchmarks/declarative/binding')
-rw-r--r--tests/benchmarks/declarative/binding/binding.pro14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/benchmarks/declarative/binding/binding.pro b/tests/benchmarks/declarative/binding/binding.pro
index 5ceaf34..268541f 100644
--- a/tests/benchmarks/declarative/binding/binding.pro
+++ b/tests/benchmarks/declarative/binding/binding.pro
@@ -8,11 +8,11 @@ SOURCES += tst_binding.cpp testtypes.cpp
HEADERS += testtypes.h
# Define SRCDIR equal to test's source directory
-DEFINES += SRCDIR=\\\"$$PWD\\\"
-
-symbian* {
- data.sources = data/*
- data.path = data
- DEPLOYMENT = data
+symbian: {
+ DEFINES += SRCDIR=\".\"
+ importFiles.sources = data
+ importFiles.path =
+ DEPLOYMENT = importFiles
+} else {
+ DEFINES += SRCDIR=\\\"$$PWD\\\"
}
-