CMake error in evarobot_simulator
Hello all, someone can help me solve this error? I got it when building the package evarobot_simulation:
CMake Error at /opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:75 (find_package):
Could not find a package configuration file provided by "im_msgs" with any
of the following names:
im_msgsConfig.cmake
im_msgs-config.cmake
Add the installation prefix of "im_msgs" to CMAKE_PREFIX_PATH or set
"im_msgs_DIR" to a directory containing one of the above files. If
"im_msgs" provides a separate development package or SDK, be sure it has
been installed.
Call Stack (most recent call first):
evarobot_simulator/evarobot_gazebo/CMakeLists.txt:4 (find_package)
Asked by Randerson on 2016-04-08 15:17:57 UTC
Answers
If you cloned just the evarobot_simulation
package and then immediately tried to catkin_make
it, this error is to be expected. The manifest of the package lists quite a few build dependencies, so a rosdep check ..
would seem like a good first step.
Alternatively, you could follow the installation tutorial, which lists the steps necessary to build everything from source.
If you don't actually need to build from source, I'd recommend just doing a sudo apt-get install ros-indigo-evapc-ros
.
Asked by gvdhoorn on 2016-04-09 03:42:47 UTC
Comments