summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/pkg-config-probe-sysroot/pkg-config.qbs
blob: 11498ebdb151a87450db524cb9ae25559b0fdb50 (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
Project {
    property string packageBaseName

    Product {
        name: "theProduct1"
        type: ["theType"]

        Depends { name: "themodule" }
        qbs.sysroot: path + "/sysroot1"
    }

    Product {
        name: "theProduct2"
        type: ["theType"]

        Depends { name: "themodule" }
        qbs.sysroot: path + "/sysroot2"
    }

    Product {
        name: "theProduct3"
        type: ["theType"]

        Depends { name: "themodule" }
        qbs.sysroot: path + "/sysroot1"
    }
}