diff options
author | Lisa Carey <lcarey@google.com> | 2016-03-07 17:41:51 +0000 |
---|---|---|
committer | Lisa Carey <lcarey@google.com> | 2016-03-07 17:41:51 +0000 |
commit | 0211098e935165801a63a866d19006bd8c49cccf (patch) | |
tree | 92f03d528a85ef6bcb22851e8ea54a89f8d11372 /examples | |
parent | 72724bce84b4bc027ce8dd3f7508b9216788434b (diff) |
Removes confusing/unnecessary section on generating code.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cpp/README.md | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/cpp/README.md b/examples/cpp/README.md index 979ba55dbb..e4b0eb698b 100644 --- a/examples/cpp/README.md +++ b/examples/cpp/README.md @@ -23,21 +23,6 @@ Change your current directory to examples/cpp/helloworld $ cd examples/cpp/helloworld/ ``` - -### Generating gRPC code - -To generate the client and server side interfaces: - -```sh -$ make helloworld.grpc.pb.cc helloworld.pb.cc -``` -Which internally invokes the proto-compiler as: - -```sh -$ protoc -I ../../protos/ --grpc_out=. --plugin=protoc-gen-grpc=grpc_cpp_plugin ../../protos/helloworld.proto -$ protoc -I ../../protos/ --cpp_out=. ../../protos/helloworld.proto -``` - ### Client and server implementations The client implementation is at [greeter_client.cc](helloworld/greeter_client.cc). |