catkin_grpc
catkin_grpc copied to clipboard
Error when using generate_proto
When using GRPC flag in generate proto function I faced cmake error:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: LIBGRPCPP_CRONET
And after some debugging I found that generate_proto.cmake can't find LIBGRPC_CRONET grpc_cronet library which force the flag not to set.
And this is from console log.
LIBGRPC_CRONET-NOTFOUND;LIBGRPCPP_CRONET-NOTFOUND
Thanks in advance.
I had the same issue and removing the library search should to the trick. (#47)
I had the same issue and removing the library search should to the trick. (#47)
you are right, thx
Seems to be fixed by #47