aboutsummaryrefslogtreecommitdiffstats
path: root/examples/protobuf/objc/addressbook.qbs
blob: f087113d9546a948e147527d11bac92029b36666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import qbs

CppApplication {
    name: "addressbook_objc"
    consoleApplication: true
    condition: protobuf.present && qbs.targetOS.contains("darwin")

    Depends { name: "cpp" }
    Depends { id: protobuf; name: "protobuf.objc"; required: false }

    files: [
        "../shared/addressbook.proto",
        "main.m",
    ]
}