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