aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/pch_files.qbs
blob: 237f8456db847698707b623545b86435a88d494d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs
import qbs.FileInfo

Product {
    name: "precompiled headers"
    condition: qtc.make_dev_package
    Depends { name: "qtc" }
    Group {
        files: [
            "qtcreator_pch.h",
            "qtcreator_gui_pch.h",
        ]
        qbs.install: true
        qbs.installDir: qtc.ide_shared_sources_path
    }
}