mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:39:07 +08:00
dc35791a56
gRPC uses `upb`, but normally it vendors-in the dependency. The vendored-in version uses a single library artifact, and the generated pkg-config file simply adds `-lupb`. In `vcpkg` we use the `upb` package. This has more libraries, and thus more `-lupb_*` options are needed. Ideally we would use a `upb.pc` file, but that does not exist.
39 lines
672 B
JSON
39 lines
672 B
JSON
{
|
|
"name": "grpc",
|
|
"version-semver": "1.37.0",
|
|
"port-version": 3,
|
|
"description": "An RPC library and framework",
|
|
"homepage": "https://github.com/grpc/grpc",
|
|
"dependencies": [
|
|
"abseil",
|
|
{
|
|
"name": "c-ares",
|
|
"platform": "!uwp"
|
|
},
|
|
{
|
|
"name": "grpc",
|
|
"host": true,
|
|
"features": [
|
|
"codegen"
|
|
]
|
|
},
|
|
"openssl",
|
|
"protobuf",
|
|
{
|
|
"name": "protobuf",
|
|
"host": true
|
|
},
|
|
"re2",
|
|
"upb",
|
|
"zlib"
|
|
],
|
|
"features": {
|
|
"absl-sync": {
|
|
"description": "Use abseil synchronization module"
|
|
},
|
|
"codegen": {
|
|
"description": "Build code generator machinery"
|
|
}
|
|
}
|
|
}
|