aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-apple/embedInfoPlist/embedInfoPlist.qbs
blob: ba23dc32c95b774649ab110bf062feae11accdd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Project {
    CppApplication {
        Depends { name: "lib" }
        Depends { name: "mod" }
        name: "app"
        consoleApplication: true
        files: ["main.m"]
        cpp.frameworks: ["Foundation"]
        cpp.rpaths: [cpp.rpathOrigin]
        cpp.minimumMacosVersion: "10.6"
        bundle.infoPlist: ({
            "QBS": "org.qt-project.qbs.testdata.embedInfoPlist"
        })
        install: true
        installDir: ""
    }

    DynamicLibrary {
        Depends { name: "cpp" }
        name: "lib"
        bundle.isBundle: false
        bundle.embedInfoPlist: true
        files: ["main.m"]
        cpp.frameworks: ["Foundation"]
        cpp.sonamePrefix: "@rpath"
        bundle.infoPlist: ({
            "QBS": "org.qt-project.qbs.testdata.embedInfoPlist.dylib"
        })
        install: true
        installDir: ""
    }

    LoadableModule {
        Depends { name: "cpp" }
        name: "mod"
        bundle.isBundle: false
        bundle.embedInfoPlist: true
        files: ["main.m"]
        cpp.frameworks: ["Foundation"]
        bundle.infoPlist: ({
            "QBS": "org.qt-project.qbs.testdata.embedInfoPlist.bundle"
        })
        Group {
            fileTagsFilter: product.type
            qbs.install: true
        }
    }
}