aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/vcs/vcstest.qbs
blob: dabe889b6bb464fd2ac6a4c4294ad33c590e57c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
CppApplication {
    condition: {
        var result = qbs.targetPlatform === qbs.hostPlatform;
        if (!result)
            console.info("targetPlatform differs from hostPlatform");
        return result;
    }
    Depends { name: "vcs" }
    vcs.headerFileName: "my-repo-state.h"
    files: ["main.cpp"]
}