Example Client/Server project showing how to use gRPC, Conan and CMake
- Conan (tested with 1.45.0)
- Cmake (tested with 3.20 - the one shipped with MSVC 2019)
- Working build tools (tested with MSVC 2019)
cmake -S . -B build
cmake --build build --parallel 12 --config Release
./build/bin/server
./build/bin/client
docker build -t grpctest .
docker run --rm -it -p 50051:50051 grpctest build/bin/server