├── .gitignore ├── CMakeLists.txt ├── README.md ├── protos └── helloworld.proto └── src ├── greeter_async_client.cc ├── greeter_async_server.cc ├── greeter_client.cc └── greeter_server.cc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/README.md -------------------------------------------------------------------------------- /protos/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/protos/helloworld.proto -------------------------------------------------------------------------------- /src/greeter_async_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/src/greeter_async_client.cc -------------------------------------------------------------------------------- /src/greeter_async_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/src/greeter_async_server.cc -------------------------------------------------------------------------------- /src/greeter_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/src/greeter_client.cc -------------------------------------------------------------------------------- /src/greeter_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jan-alexander/grpc-cpp-helloworld-cmake/HEAD/src/greeter_server.cc --------------------------------------------------------------------------------