aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/modulepropertiesingroups.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/language/testdata/modulepropertiesingroups.qbs')
-rw-r--r--src/lib/corelib/language/testdata/modulepropertiesingroups.qbs25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/lib/corelib/language/testdata/modulepropertiesingroups.qbs b/src/lib/corelib/language/testdata/modulepropertiesingroups.qbs
index 6bfbf42d3..22fb750e4 100644
--- a/src/lib/corelib/language/testdata/modulepropertiesingroups.qbs
+++ b/src/lib/corelib/language/testdata/modulepropertiesingroups.qbs
@@ -3,11 +3,34 @@ import qbs 1.0
Project {
Product {
name: "grouptest"
+
+ Depends { name: "gmod1" }
Depends { name: "dummyqt.core" }
+
+ gmod1.listProp2: ["product", gmod1.stringProp]
+ gmod1.p1: 1
+
+ // TODO: Also test nested groups in >= 1.7
Group {
- name: "thegroup"
+ name: "g1"
files: ["Banana"]
+
+ gmod1.stringProp: "g1"
+ gmod1.listProp2: ["g1"]
+ gmod1.p2: 2
+ gmod2.prop: 1
dummyqt.core.zort: "X"
}
+
+ Group {
+ name: "g2"
+ files: ["zort"]
+
+ gmod1.stringProp: "g2"
+ gmod1.listProp2: ["g2"]
+ gmod1.p1: 2
+ gmod1.p2: 4
+ gmod2.prop: 2
+ }
}
}