aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/cpp/README.md
diff options
context:
space:
mode:
authorGravatar Lisa Carey <lcarey@google.com>2016-03-07 17:41:51 +0000
committerGravatar Lisa Carey <lcarey@google.com>2016-03-07 17:41:51 +0000
commit0211098e935165801a63a866d19006bd8c49cccf (patch)
tree92f03d528a85ef6bcb22851e8ea54a89f8d11372 /examples/cpp/README.md
parent72724bce84b4bc027ce8dd3f7508b9216788434b (diff)
Removes confusing/unnecessary section on generating code.
Diffstat (limited to 'examples/cpp/README.md')
-rw-r--r--examples/cpp/README.md15
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).