ros_service_examples
ros_service_examples copied to clipboard
Mp3InventoryService.h no such file
When I tried to build with catkin_make, it told me that there is no such file as Mp3InventoryService.h
I have the same problem here. :(
Hey,
sorry for not being very responsive on this right now (got a pretty important deadline coming up). I'll look into this as soon as I find the time.
Cheers
how is this issue now? I'm a new ROS user and faced with the same issue when creating a message and service in ROS.
[rospack] Error: package 'ros_service_examples' not found
Hi ,
Edit ros_service_examples/CMakeLists.txt downloaded from repo here .
Add two lines in the end of CMakeList.txt
add_dependencies(mp3_inventory ros_service_examples_gencpp) add_dependencies(mp3_controller ros_service_examples_gencpp)
It works fine in ROS Lunar .
@xiongdemao
You should create a catkin workspace with sub directory src first .
Something examples is like catkin_ws |-devel └src └ros_service_examples
Please follow ROS tutorial to create workspace and download code to right place . ROS official
@KevKzTW Thank you! It works also on kinetic!
@KevKzTW Thanks, it works also on melodic