summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/list-products/list-products.qbs
blob: 559a7d2740131d895ad4e7ea0b3e2a4f1524e908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs

Project {
    Product {
        name: "a"
    }
    Product {
        name: "b"
        multiplexByQbsProperties: ["architectures", "buildVariants"]
        qbs.architectures: ["mips", "vax"]
        qbs.buildVariants: ["debug", "release"]
    }
    Product {
        name: "c"
    }
}