I clone https://github.com/grpc/grpc and try to build gRPC++ library with Bazel like this: "bazel build :grpc++"
There are no build errors, but I get: "Target //:grpc++ up-to-date (nothing to build)" and the library artifact is not produced. I tracked it down to grpc_cc_library(name = "grpc++", ...) which does not specify any srcs and as the result the header only library produces no binary file.
I searched and could not find any guidance on how grpc++.lib or libgrpc++.so supposed to be built with Bazel. Any help?
Thank you!
Konstantin