You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A suitable quote that I found while figuring out (yet) another CMake Error:
CMake is anarchy
The seerep_core_fb package is a pure CMake package, no catkin involved. A ...Config.cmake.in file is used to define its dependencies. This file is passed to CMake to generate the required Config.cmake, which is needed by find_package
The problem is that the cmake.in file has not been updated and still has Protocol Buffer dependencies?!
Now if another package want's to use seerep_core_fb and the PB packages have not been build before, an error like this will be thrown
CMake Error at /seerep/devel/lib/cmake/seerepcorefb/SeerepCoreFbConfig.cmake:51 (find_package):
By not providing "FindSeerepHdf5Pb.cmake"in CMAKE_MODULE_PATH this project
has asked CMake to find a package configuration file provided by
"SeerepHdf5Pb", but CMake did not find one.
Could not find a package configuration file provided by "SeerepHdf5Pb" with
any of the following names:
SeerepHdf5PbConfig.cmake
seerephdf5pb-config.cmake
Of course, this doesn't happen if you run catkin build to build all packages.
The text was updated successfully, but these errors were encountered:
A suitable quote that I found while figuring out (yet) another CMake Error:
The
seerep_core_fb
package is a pure CMake package, no catkin involved. A ...Config.cmake.in file is used to define its dependencies. This file is passed to CMake to generate the requiredConfig.cmake
, which is needed byfind_package
The problem is that the
cmake.in
file has not been updated and still has Protocol Buffer dependencies?!seerep/seerep_srv/seerep_core_fb/cmake/SeerepCoreFbConfig.cmake.in
Lines 11 to 29 in 0e4e058
Now if another package want's to use
seerep_core_fb
and the PB packages have not been build before, an error like this will be thrownOf course, this doesn't happen if you run
catkin build
to build all packages.The text was updated successfully, but these errors were encountered: