24 lines
517 B
CMake
24 lines
517 B
CMake
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()
|