vcpkg/ports/grpc/vcpkg.json
Carlos O'Ryan dc35791a56
[grpc] fix generated pkg-config file (#19174)
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.
2021-07-27 15:29:44 -07:00

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"
}
}
}