# hello-grpc-cpp **Repository Path**: feuyeux/hello-grpc-cpp ## Basic Information - **Project Name**: hello-grpc-cpp - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-25 - **Last Updated**: 2023-03-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: Grpc ## README # grpc c++ demo ## 1 Setup ```bash sh init.sh ``` ## 2 Build ### cmake config `CMakeLists.txt` > set `$GRPC_INSTALL_PATH` for `CMAKE_PREFIX_PATH` ```cmake set(CMAKE_PREFIX_PATH ${CMAKE_PREFIX_PATH} "/Users/han/.local") ``` ### cmake & make ```bash sh build.sh ``` ## 3 Run ```bash ./build/proto_server ``` ```bash ./build/proto_client ``` ## 4 Test ```bash ./build/tests ```