aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/module-property-overrides-per-product.qbs
blob: 3ff81108029d3b260c2f582d35f107f760074b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import qbs

Project {
    Product {
        Depends { name: "dummy" }
        name: "a"
        property stringList rpaths: dummy.rpaths
    }
    Product {
        Depends { name: "dummy" }
        name: "b"
        property stringList rpaths: dummy.rpaths
    }
    Product {
        Depends { name: "dummy" }
        name: "c"
        property stringList rpaths: dummy.rpaths
    }
}