aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/run-multiplexed/run-multiplexed.qbs
blob: 11577b54a6d45182ae9bb38bd8f523a071df1986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import qbs.Host

CppApplication {
    aggregate: false
    consoleApplication: true
    name: "app"
    multiplexByQbsProperties: "buildVariants"

    qbs.buildVariants: ["debug", "release"]

    files: "main.cpp"

    Probe {
        id: checker
        property string targetPlatform: qbs.targetPlatform
        configure: {
            if (targetPlatform !== Host.platform())
                console.info("targetPlatform differs from hostPlatform");
        }
    }
}