aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/precompiledHeader/precompiledHeader.qbs
blob: de65b93304ebc08434cc61c41e852dce8241f53b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs 1.0

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