aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/testlib/testlib.pro
diff options
context:
space:
mode:
authorCharles Yin <charles.yin@nokia.com>2011-05-20 11:57:29 +1000
committerCharles Yin <charles.yin@nokia.com>2011-05-20 12:07:23 +1000
commitdaf671b42241533a2db1e598487256d616edf290 (patch)
treeeab238ee6f6e8ec55bf292d23399d0430c31b95f /src/imports/testlib/testlib.pro
parent9bf28fbf0ee26dfde7d6060b10186cfccdcfcd67 (diff)
Integrate QtQuickTest into Qt
Diffstat (limited to 'src/imports/testlib/testlib.pro')
-rw-r--r--src/imports/testlib/testlib.pro29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/imports/testlib/testlib.pro b/src/imports/testlib/testlib.pro
new file mode 100644
index 0000000000..cc29d53f51
--- /dev/null
+++ b/src/imports/testlib/testlib.pro
@@ -0,0 +1,29 @@
+TARGET = qmltestplugin
+TARGETPATH = QtTest
+include(../qimportbase.pri)
+
+CONFIG += qt plugin
+
+symbian {
+ CONFIG += epocallowdlldata
+ contains(QT_EDITION, OpenSource) {
+ TARGET.CAPABILITY = LocalServices NetworkServices ReadUserData UserEnvironment WriteUserData
+ } else {
+ TARGET.CAPABILITY = All -Tcb
+ }
+}
+
+QT += declarative script qmltest qmltest-private
+
+SOURCES += main.cpp
+HEADERS +=
+
+qdeclarativesources.files += \
+ qmldir \
+ TestCase.qml \
+ SignalSpy.qml \
+ testlogger.js
+
+qdeclarativesources.path += $$[QT_INSTALL_IMPORTS]/QtTest
+target.path += $$[QT_INSTALL_IMPORTS]/QtTest
+INSTALLS += qdeclarativesources target