aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/codemodel/check/check.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/codemodel/check/check.qbs')
-rw-r--r--tests/auto/qml/codemodel/check/check.qbs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/qml/codemodel/check/check.qbs b/tests/auto/qml/codemodel/check/check.qbs
new file mode 100644
index 0000000000..ffa48d6ac2
--- /dev/null
+++ b/tests/auto/qml/codemodel/check/check.qbs
@@ -0,0 +1,16 @@
+import qbs
+import "../../../autotest.qbs" as Autotest
+
+Autotest {
+ name: "QML code model check autotest"
+ Depends { name: "LanguageUtils" }
+ Depends { name: "QmlJS" }
+ Depends { name: "Utils" }
+ Depends { name: "Qt.widgets" }
+ files: "tst_check.cpp"
+ cpp.defines: base.concat([
+ 'QT_CREATOR',
+ 'QTCREATORDIR="' + project.ide_source_tree + '"',
+ 'TESTSRCDIR="' + path + '"'
+ ])
+}