summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/precompiled-and-prefix-headers/precompiled-and-prefix-headers.qbs
blob: bbd524e23ff78fe6d0b772e2f16fb5a502d4f942 (plain)
1
2
3
4
5
6
7
8
9
10
11
CppApplication {
    name: "MyApp"
    consoleApplication: true
    cpp.includePaths: [product.buildDirectory]
    cpp.prefixHeaders: [ "prefix.h" ]
    Group {
        files: ["pch.h"]
        fileTags: ["cpp_pch_src"]
    }
    files: ["main.cpp"]
}