aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/install-duplicates-no-error/install-duplicates-no-error.qbs
blob: a3282f94109bd3c27ffc7a01470345b44ab83759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Project {
    Product {
        name: "p1"
        Group {
            files: ["file1.txt"]
            qbs.install: true
        }
    }
    Product {
        name: "p2"
        Group {
            files: ["file1.txt"]
            qbs.install: true
        }
    }
    Product {
        name: "p3"
        Group {
            files: ["file2.txt"]
            qbs.install: true
        }
        multiplexByQbsProperties: ["buildVariants"]
        qbs.buildVariants: ["debug", "release"]
    }
    Product {
        name: "p4"
        Group {
            files: ["file2.txt"]
            qbs.install: true
        }
        aggregate: true
        multiplexByQbsProperties: ["buildVariants"]
        qbs.buildVariants: ["debug", "release"]
    }
}