aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/properties-block-in-group.qbs
blob: c2bfea0a89d9864a9ee85f9f20772ac52fd8ee13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs

Product {
    name: "in-group"
    property bool featureEnabled: true
    Depends { name: "dummy" }
    dummy.defines: ["BASEDEF"]
    Group {
        name: "the group"
        files: ["dummy.txt" ]
        Properties {
            condition: featureEnabled
            dummy.defines: outer.concat("FEATURE_ENABLED")
        }
    }
}