17 lines
328 B
CMake
17 lines
328 B
CMake
|
cmake_minimum_required(VERSION 3.8)
|
||
|
project(my_robot_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}
|
||
|
)
|
||
|
|
||
|
ament_package()
|