git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc
cd grpc
git submodule update --initmd .build
cd .build
cmake .. -G "Visual Studio 17 2022"
cmake --build . --config Releasecmake --install .vcpkg new --applicationvcpkg add port grpcvcpkg installinclude("path\\to\\vcpkg.cmake)
find_package(gRPC CONFIG REQUIRED)
target_link_libraries(ImmortalsGUIApp PRIVATE
...
gRPC::grpc++
)