You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discovered in AIS-Bonn/catch_ros#15, we currently prefer the catch_ros headers from e.g. /opt/ros/noetic/include in favor of the (correct) ones from the current workspace.
... which adds the catch_ros headers to the end. Instead, we should use catkin's list_insert_in_workspace_order() function to correctly insert the additional include path.
The text was updated successfully, but these errors were encountered:
As discovered in AIS-Bonn/catch_ros#15, we currently prefer the catch_ros headers from e.g.
/opt/ros/noetic/include
in favor of the (correct) ones from the current workspace.The reason is this line:
nimbro_network/nimbro_topic_transport/CMakeLists.txt
Line 170 in 7e1de20
... which adds the
catch_ros
headers to the end. Instead, we should use catkin'slist_insert_in_workspace_order()
function to correctly insert the additional include path.The text was updated successfully, but these errors were encountered: