What does colcon do with the cmake variable CATKIN_DEVEL_PREFIX?
These lines in moveit use it:
https://github.com/ros-planning/moveit/blob/ac55f9e252fb24321c4066d71bca4f447b55d961/moveit_ros/planning_interface/py_bindings_tools/CMakeLists.txt#L12-L16
and as a result tests that use the python bindings for the planning interface fail with an error about not being able to find the symbol _moveit_roscpp_initializer.
I know colcon doesn't have the concept of a devel space so how is this variable handled when building a catkin project?
What does colcon do with the cmake variable
CATKIN_DEVEL_PREFIX?These lines in moveit use it:
https://github.com/ros-planning/moveit/blob/ac55f9e252fb24321c4066d71bca4f447b55d961/moveit_ros/planning_interface/py_bindings_tools/CMakeLists.txt#L12-L16
and as a result tests that use the python bindings for the planning interface fail with an error about not being able to find the symbol
_moveit_roscpp_initializer.I know colcon doesn't have the concept of a devel space so how is this variable handled when building a catkin project?