You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
361 B

  1. include_directories(${CMAKE_CURRENT_SOURCE_DIR}/grpc)
  2. # third_party: grpc
  3. # On how to build grpc, you may refer to https://github.com/grpc/grpc
  4. # We recommend manually recursive clone the repo to avoid internet connection problem
  5. FetchContent_Declare(gRPC
  6. GIT_REPOSITORY https://github.com/grpc/grpc
  7. GIT_TAG v1.37.1
  8. )
  9. FetchContent_MakeAvailable(gRPC)