aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/groupname.qbs
blob: 22e58765c2350ca030738d1fb9bda9c8038eb209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Project {
    Product {
        name: "MyProduct"
        Group {
            name: product.name + ".MyGroup"
            files: "*"
        }
    }

    Product {
        name: "My2ndProduct"
        Group {
            name: product.name + ".MyGroup"
            files: ["narf"]
        }
        Group {
            files: ["zort"]
        }
    }
}