runtime/rasmt_moveit_config/CMakeLists.txt
2022-01-17 20:26:25 +04:00

16 lines
No EOL
341 B
CMake

cmake_minimum_required(VERSION 3.16.3)
project(rasmt_moveit_config)
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 config launch
DESTINATION share/${PROJECT_NAME}
)
ament_package()