2024-12-19 00:29:23 +00:00
|
|
|
cmake_minimum_required(VERSION 3.8)
|
|
|
|
project(locker98_tools_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)
|
|
|
|
|
2024-12-19 03:27:23 +00:00
|
|
|
install(
|
2025-01-14 15:12:36 +00:00
|
|
|
DIRECTORY launch worlds config
|
2024-12-19 03:27:23 +00:00
|
|
|
DESTINATION share/${PROJECT_NAME}/
|
|
|
|
)
|
2024-12-19 00:29:23 +00:00
|
|
|
|
|
|
|
ament_package()
|