summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/list-properties-with-outer/list-properties-with-outer.qbs
blob: 3b0b3be4971e0993ab6e771ec7db2128bc28f1ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import qbs

Product {
    type: ["outtype"]
    Depends { name: "higher" }
    lower.listProp: ["product"]
    Group {
        files: ["dummy.txt"]
        fileTags: ["intype"]
        lower.listProp: outer.concat(["group"])
    }
}