locker98_tools_ws/locker98_tools_bringup/CMakeLists.txt
2025-01-14 10:12:36 -05:00

17 lines
350 B
CMake

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)
install(
DIRECTORY launch worlds config
DESTINATION share/${PROJECT_NAME}/
)
ament_package()