1738_29102025

This commit is contained in:
2025-10-29 17:38:43 +07:00
parent 7c1dcfd352
commit cdb9ded893
51 changed files with 2055 additions and 1216 deletions

View File

@@ -12,6 +12,15 @@ if (NOT TARGET geometry_msgs)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../common_msgs/geometry_msgs ${CMAKE_BINARY_DIR}/geometry_msgs_build)
endif()
if (NOT TARGET nav_msgs)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../common_msgs/nav_msgs ${CMAKE_BINARY_DIR}/nav_msgs_build)
endif()
if (NOT TARGET map_msgs)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/../map_msgs ${CMAKE_BINARY_DIR}/map_msgs_build)
endif()
# ---- Dependencies ----
find_package(Eigen3 REQUIRED)
find_package(Boost REQUIRED COMPONENTS system thread)
@@ -41,13 +50,16 @@ target_link_libraries(costmap_2d
${Boost_LIBRARIES}
sensor_msgs
geometry_msgs
nav_msgs
map_msgs
tf2
)
# # ---- Layer plugins ----
add_library(layers
plugins/inflation_layer.cpp
# plugins/obstacle_layer.cpp
# plugins/static_layer.cpp
plugins/obstacle_layer.cpp
plugins/static_layer.cpp
# plugins/voxel_layer.cpp
)