aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pch/pch.qbp
blob: 664d134e691a7641a8e2e934210134837577032e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import qbs.base 1.0

Product {
    type: "application"
    name: "pch"
    files: ["stable.h",
            "myobject.h",
            "main.cpp",
            "myobject.cpp"]
    Depends { name: "cpp" }
    cpp.precompiledHeader: "stable.h"
}