summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-02-18 15:41:47 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-02-18 17:05:26 +0200
commit2bd868b685a2b0cff5399b0340745097d1a79c0c (patch)
tree958947dd7f715f37ee6ed0836f27dcbdedbb08af
parentf6c973249d5ee08a750df7bcb4ebe8e1a5d9b88e (diff)
downloadqt-creator-2bd868b685a2b0cff5399b0340745097d1a79c0c.tar.gz
Add qbs project file.
Change-Id: I36368fa8c5478bc688819ea23152f8272ff5cfa9 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--plugins/autotest/autotest.qbs80
1 files changed, 80 insertions, 0 deletions
diff --git a/plugins/autotest/autotest.qbs b/plugins/autotest/autotest.qbs
new file mode 100644
index 0000000000..8b522b6eb6
--- /dev/null
+++ b/plugins/autotest/autotest.qbs
@@ -0,0 +1,80 @@
+import qbs
+
+QtcPlugin {
+ name: "AutoTest"
+
+ Depends { name: "Core" }
+ Depends { name: "CppTools" }
+ Depends { name: "CPlusPlus" }
+ Depends { name: "LicenseChecker" }
+ Depends { name: "ProjectExplorer" }
+ Depends { name: "QmakeProjectManager" }
+ Depends { name: "QmlJS" }
+ Depends { name: "QmlJSTools" }
+ Depends { name: "Utils" }
+
+ Depends {
+ name: "QtSupport"
+ condition: project.testsEnabled
+ }
+
+ Depends {
+ name: "Qt.test"
+ condition: project.testsEnabled
+ }
+
+ Depends { name: "Qt.widgets" }
+
+ files: [
+ "autotest.qrc",
+ "autotest_global.h",
+ "autotestconstants.h",
+ "autotestplugin.cpp",
+ "autotestplugin.h",
+ "testcodeparser.cpp",
+ "testcodeparser.h",
+ "testconfiguration.cpp",
+ "testconfiguration.h",
+ "testinfo.cpp",
+ "testinfo.h",
+ "testnavigationwidget.cpp",
+ "testnavigationwidget.h",
+ "testresult.cpp",
+ "testresult.h",
+ "testresultdelegate.cpp",
+ "testresultdelegate.h",
+ "testresultmodel.cpp",
+ "testresultmodel.h",
+ "testresultspane.cpp",
+ "testresultspane.h",
+ "testrunner.cpp",
+ "testrunner.h",
+ "testsettings.cpp",
+ "testsettings.h",
+ "testsettingspage.cpp",
+ "testsettingspage.h",
+ "testsettingspage.ui",
+ "testtreeitem.cpp",
+ "testtreeitem.h",
+ "testtreeitemdelegate.cpp",
+ "testtreeitemdelegate.h",
+ "testtreemodel.cpp",
+ "testtreemodel.h",
+ "testtreeview.cpp",
+ "testtreeview.h",
+ "testvisitor.cpp",
+ "testvisitor.h",
+ "testxmloutputreader.cpp",
+ "testxmloutputreader.h",
+ ]
+
+ Group {
+ name: "Test sources"
+ condition: project.testsEnabled
+ files: [
+ "autotestunittests.cpp",
+ "autotestunittests.h",
+ "autotestunittests.qrc",
+ ]
+ }
+}