summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata-apple/overrideInfoPlist/overrideInfoPlist.qbs
blob: e70584ed8b82e61b5a8ac5969ccbc62cd0d3f6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CppApplication {
    Depends { name: "bundle" }
    cpp.minimumMacosVersion: "10.7"
    files: ["main.c", "Override-Info.plist"]

    Properties {
        condition: qbs.targetOS.contains("darwin")
        bundle.isBundle: true
        bundle.identifierPrefix: "com.test"

        bundle.infoPlist: ({
            "CFBundleName": "My Bundle",
            "OverriddenValue": "The overridden value",
        })
    }
}