Skip to content

Commit

Permalink
FIX: Detection of ROS1
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Oct 18, 2024
1 parent 23009cb commit 26ee5f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/rosbag2rawlog/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

if(NOT TARGET ros1bridge)
return()
# Try to find it as an external project (needed for mrpt_ros package)
find_package(ros1bridge QUIET)
if(NOT TARGET ros1bridge)
return()
endif()
endif()

project(rosbag2rawlog)
Expand Down
1 change: 1 addition & 0 deletions doc/source/doxygen-docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Version 2.14.4: UNRELEASED
- BUG FIXES:
- mrpt::nav::CAbstractPTGBasedReactive: Missing heading information in recently-added TP-Space targets as TPose2D.
- rosbag2rawlog: Fix detection of mrpt-ros1bridge when built within mrpt_ros ROS packaging.

# Version 2.14.3: Released Oct 12th, 2024
- Changes in libraries:
Expand Down

0 comments on commit 26ee5f9

Please sign in to comment.