Skip to content

goldenhand76/immortals_GUI

 
 

Repository files navigation

Install grpc

Clone

git clone -b RELEASE_TAG_HERE https://github.com/grpc/grpc
cd grpc
git submodule update --init

Build

md .build
cd .build
cmake .. -G "Visual Studio 17 2022"
cmake --build . --config Release

Install

cmake --install .

Install gRPC using vcpkg

1. Install vcpkg and add VCPKG_ROOT to environment PATH

2. Initialize vcpkg

vcpkg new --application

3. Add grpc package

vcpkg add port grpc

4. Install

vcpkg install

6. Edit CMakeLists.txt

include("path\\to\\vcpkg.cmake)
find_package(gRPC CONFIG REQUIRED)

target_link_libraries(ImmortalsGUIApp PRIVATE
...
gRPC::grpc++
)

About

Immortals Graphical User Interface

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • QML 54.3%
  • C++ 35.6%
  • CMake 7.2%
  • C 2.9%