summaryrefslogtreecommitdiff
path: root/plugins/autotest/unit_test/mixed_atp/src/src.qbs
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2015-07-27 16:07:47 +0200
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-08-06 14:53:54 +0300
commit828b61e941fb2247c49c846103f7be5c7c5cbb0a (patch)
treeed767bf1fba443c8c499ac88c2cd10463f220243 /plugins/autotest/unit_test/mixed_atp/src/src.qbs
parent7c06e4b768f34f6e840541c22b96700e5bc93849 (diff)
downloadqt-creator-828b61e941fb2247c49c846103f7be5c7c5cbb0a.tar.gz
Add qbs project files to unit tests
Change-Id: I27918b0beaa39926c13dbf54e1479502a598a598 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'plugins/autotest/unit_test/mixed_atp/src/src.qbs')
-rw-r--r--plugins/autotest/unit_test/mixed_atp/src/src.qbs11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/autotest/unit_test/mixed_atp/src/src.qbs b/plugins/autotest/unit_test/mixed_atp/src/src.qbs
new file mode 100644
index 0000000000..5ed4dd4a36
--- /dev/null
+++ b/plugins/autotest/unit_test/mixed_atp/src/src.qbs
@@ -0,0 +1,11 @@
+import qbs
+
+CppApplication {
+ type: "application"
+ name: "Dummy Application"
+
+ Depends { name: "Qt.gui" }
+ Depends { name: "Qt.widgets" }
+
+ files: [ "main.cpp" ]
+}