summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2010-10-04 11:10:53 +1000
committerRhys Weatherley <rhys.weatherley@nokia.com>2010-10-04 11:10:53 +1000
commitd225ad73127e1d9e578ae8a047fb18613078144e (patch)
tree6f005aed9a5f8c5c9c0606e69c8956fa63384002
parenta96583615ffbcb32726df56d206953f4b238e98d (diff)
Add a basic build system for installing the QML module
-rw-r--r--QtTest/QtTest.pro12
-rw-r--r--qtest-qml.pro2
2 files changed, 14 insertions, 0 deletions
diff --git a/QtTest/QtTest.pro b/QtTest/QtTest.pro
new file mode 100644
index 0000000..88db644
--- /dev/null
+++ b/QtTest/QtTest.pro
@@ -0,0 +1,12 @@
+# No C++ sources to build, so use the "subdirs" template without
+# any SUBDIRS to disable trying to build a C++ app, lib, or plugin.
+TEMPLATE = subdirs
+
+qdeclarativesources.files += \
+ qmldir \
+ TestCase.qml \
+ testlogger.js
+
+qdeclarativesources.path += $$[QT_INSTALL_IMPORTS]/QtTest
+
+INSTALLS += qdeclarativesources
diff --git a/qtest-qml.pro b/qtest-qml.pro
new file mode 100644
index 0000000..bede5ce
--- /dev/null
+++ b/qtest-qml.pro
@@ -0,0 +1,2 @@
+TEMPLATE = subdirs
+SUBDIRS = QtTest