aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/language/testdata/propertiesblocks_base.qbs
blob: 71b09a3daca1c3891d0a1c86fe551ec6689d4167 (plain)
1
2
3
4
5
6
7
8
9
10
11
import qbs 1.0

Product {
    property bool defineBase: true
    Depends { name: "dummy" }
    Properties {
        condition: defineBase
        dummy.defines: ["BASE"]
    }
    dummy.defines: ["SOMETHING"]
}