aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-apple/frameworkStructure/frameworkStructure.qbs
blob: a812ae51300295ba2afc3ec21c2c2e6d8c6a03a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Project {
    property bool includeHeaders: true
    Library {
        Depends { name: "cpp" }

        name: "Widget"
        bundle.isBundle: true
        bundle.publicHeaders: project.includeHeaders ? ["Widget.h"] : undefined
        bundle.privateHeaders: project.includeHeaders ? ["WidgetPrivate.h"] : base
        bundle.resources: ["BaseResource", "en.lproj/EnglishResource"]
        files: ["Widget.cpp"].concat(bundle.publicHeaders || []).concat(bundle.privateHeaders || [])
    }
}