aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-apple/overrideInfoPlist/overrideInfoPlist.qbs
blob: 270a0792c84e4c6cc571aae1bccdb1dea77298d4 (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.includes("darwin")
        bundle.isBundle: true
        bundle.identifierPrefix: "com.test"

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