aboutsummaryrefslogtreecommitdiffstats
path: root/examples/protobuf/addressbook_cpp/addressbook_cpp.qbs
blob: 5a3b27652657d367e138695545c7d86a6acd5dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs.Host

CppApplication {
    consoleApplication: true
    condition: protobuf.cpp.present && qbs.targetPlatform === Host.platform()

    Depends { name: "cpp" }
    cpp.minimumMacosVersion: "10.15"

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

    files: [
        "../shared/addressbook.proto",
        "main.cpp",
        "README.md",
    ]
    qbsModuleProviders: "qbspkgconfig"
}