Locate CATKIN_PACKAGE_SHARE_DESTINATION in devel space
I have a package that needs some binary resources at run-time.
In CMakeLists.txt, I install:
install(
DIRECTORY resources/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/resources )
I would find them in/opt/ros/..../share/pkg/resources.
That works fine when installing the package.
However, how would I locate these resources during development?
They are not installed in the devel/share
location.
Previously asked here: https://github.com/ros/catkin/issues/...