ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
There are two unrelated errors:
rosdep install
error:
This is due to the packages lio_sam
and rslidar_driver
that exist in your workspace. The rosdep command will (most probably) also fail even without the velodyne repo in your workspace. The cause is that there are dependencies specified in the package.xml
of those packages that are neither released ROS packages nor packages in your local workspace (i.e. GTSAM
and rslidar_input
).catkin
builds everything in the same CMake context. Within one context, no two targets (added with add_executable
, add_library
or add_custom_target
) can share the same name. You do have a target with same name in the velodyne package as well as in rslidar_driver
, namely driver_nodelet
(pretty obvious from the first cmake error message, the rest of the error messages is caused by the first). Possible solutions:
catkin_make_isolated
or catkin-tools
)