Wie man CMake behebt: Could not find a package configuration file provided by "gRPC"

Problem

Beim Versuch, ein C++-Projekt zu bauen, das von gRPC abhängt, könnten Sie den folgenden Fehler feststellen:

cmake-grpc-not-found-error.txt
CMake Error at CMakeLists.txt:37 (find_package):
  Could not find a package configuration file provided by "gRPC" with any of
  the following names:

    gRPCConfig.cmake
    grpc-config.cmake

  Add the installation prefix of "gRPC" to CMAKE_PREFIX_PATH or set
  "gRPC_DIR" to a directory containing one of the above files.  If "gRPC"
  provides a separate development package or SDK, be sure it has been
  installed.

Lösung

Sie müssen libgrpc-dev installieren, um die notwendigen CMake-Konfigurationsdateien für gRPC zu erhalten. Sie können dies mit dem folgenden Befehl tun:

install-grpc-dev.sh
sudo apt -y install libgrpc-dev

Check out similar posts by category: C/C++