aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/two-default-property-values/project.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/two-default-property-values/project.qbs')
-rw-r--r--tests/auto/blackbox/testdata/two-default-property-values/project.qbs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/two-default-property-values/project.qbs b/tests/auto/blackbox/testdata/two-default-property-values/project.qbs
new file mode 100644
index 000000000..c0bc720f7
--- /dev/null
+++ b/tests/auto/blackbox/testdata/two-default-property-values/project.qbs
@@ -0,0 +1,13 @@
+import qbs
+
+Product {
+ name: "two-default-property-values"
+ type: "mymodule"
+ Depends { name: "mymodule" }
+ Depends { name: "myothermodule" }
+ mymodule.direct: "dummy"
+ Group {
+ files: ["test.txt"]
+ fileTags: ["txt"]
+ }
+}