Wie man CMake behebt: The imported target "gRPC::grpc_cpp_plugin" references the file
Problem
Beim Versuch, ein C++-Projekt zu bauen, das von gRPC abhängt, könnten Sie den folgenden Fehler feststellen:
cmake-grpc-cpp-plugin-error.txt
CMake Error at /usr/lib/x86_64-linux-gnu/cmake/grpc/gRPCTargets.cmake:194 (message):
The imported target "gRPC::grpc_cpp_plugin" references the file
"/usr/bin/grpc_cpp_plugin"
but this file does not exist. Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
"/usr/lib/x86_64-linux-gnu/cmake/grpc/gRPCTargets.cmake"
but not all the files it references.
Call Stack (most recent call first):
/usr/lib/x86_64-linux-gnu/cmake/grpc/gRPCConfig.cmake:25 (include)
CMakeLists.txt:37 (find_package)Lösung
Sie müssen protobuf-compiler-grpc installieren, um die ausführbare Datei grpc_cpp_plugin zu erhalten. Sie können dies mit dem folgenden Befehl tun:
install-protobuf-compiler-grpc.sh
sudo apt -y install protobuf-compiler-grpcCheck out similar posts by category:
C/C++
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow