aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/precompiled-header/precompiled-header.qbs
blob: 5f7b4b616faef8c5f58202b910b2d642c99ad54f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import qbs 1.0

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