Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pbstream_to_ros_map_node #54

Merged
merged 1 commit into from
Oct 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cartographer_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ set(ALL_SRCS
"cartographer_ros/time_conversion.cc"
"cartographer_ros/trajectory_options.cc"
"cartographer_ros/submap.cc"
"cartographer_ros/ros_map.cc"
)
add_library(${PROJECT_NAME} ${ALL_SRCS})
ament_target_dependencies(${PROJECT_NAME} PUBLIC
Expand Down
6 changes: 6 additions & 0 deletions cartographer_ros/cartographer_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,15 @@ ament_target_dependencies(occupancy_grid_node
rclcpp
)

add_executable(pbstream_to_ros_map_node
pbstream_to_ros_map_main.cc)
target_include_directories(pbstream_to_ros_map_node SYSTEM PUBLIC ${LUA_INCLUDE_DIR})
target_link_libraries(pbstream_to_ros_map_node ${PROJECT_NAME})

install(TARGETS
cartographer_node
occupancy_grid_node
pbstream_to_ros_map_node
DESTINATION lib/${PROJECT_NAME})

# google_binary(cartographer_assets_writer
Expand Down