aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/buildenv-change/buildenv-change.qbs
blob: 6c0bcc73e0dbf3c695a22222b04ed4678935960f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CppApplication {
    Probe {
        id: dummy
        property stringList toolchain: qbs.toolchain
        configure: {
            if (toolchain.contains("msvc"))
                console.info("msvc");
        }
    }
    files: [
        "file.c",
        "main.cpp",
        "subdir/theheader.h",
        "subdir2/theheader.h",
    ]
}