add ROS 2 launch scripts for starting the AGV Pro

This commit is contained in:
X-lanni
2025-06-06 13:38:07 +08:00
parent d398ba0a22
commit 9187b9fb85
5 changed files with 107 additions and 16 deletions
+23
View File
@@ -0,0 +1,23 @@
cmake_minimum_required(VERSION 3.8)
project(agv_pro_bringup)
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
install(DIRECTORY
launch
DESTINATION share/${PROJECT_NAME}/
)
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
set(ament_cmake_copyright_FOUND TRUE)
set(ament_cmake_cpplint_FOUND TRUE)
ament_lint_auto_find_test_dependencies()
endif()
ament_package()