aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/additional-product-types.qbs
blob: 686650f421c7137af323cfb578f07b3d7021fa9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Product {
    name: "p"
    type: ["tag1"]

    Depends { name: "dummy" }
    Depends { name: "dummy2" }

    property bool hasTag1: type.contains("tag1")
    property bool hasTag2: type.contains("tag2")
    property bool hasTag3: type.contains("tag3")
    property bool hasTag4: type.contains("tag4")
}