summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/buildenv-change/buildenv-change.qbs
blob: 54005e76a3334d6284e7f330750217f8a26957ca (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.includes("msvc"))
                console.info("msvc");
        }
    }
    files: [
        "file.c",
        "main.cpp",
        "subdir/theheader.h",
        "subdir2/theheader.h",
    ]
}