ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I guess I was right, after looking a little deeper into CMakeLists and tinkering around a bit I found that I have to use INSTALL(DIRECTORY ...) to make copies of the .yaml file to the right destination.
So this is what my final install(DIRECTORY...) rule looks like:
install(
DIRECTORY
launch
config
DESTINATION
share/${PROJECT_NAME}/
)