Add grpc_extra_deps() to C++ README

From the discussion in https://github.com/grpc/grpc/issues/20511, the comments in 695f6daf14/bazel/grpc_extra_deps.bzl, and my experience spinning up in gRPC C++, I think the C++ instructions are missing the grpc_extra_deps() call. 

Figured I'd just spin up a quick PR, rather than file an issue. Feel free to do whatever you'd like to the change, ofc. 
Thanks! :)
pull/24823/head
cpsauer 4 years ago committed by GitHub
parent 694cd98cf2
commit 777eda00e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/cpp/README.md

@ -25,10 +25,10 @@ To add gRPC as a dependency in bazel:
],
strip_prefix = "grpc-YOUR_GRPC_COMMIT_SHA",
)
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
grpc_deps()
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
grpc_extra_deps()
```
## CMake

Loading…
Cancel
Save