aubo_ros2_description/CMakeLists.txt
2025-05-01 19:33:54 +03:00

15 lines
345 B
CMake

cmake_minimum_required(VERSION 3.5)
project(aubo_ros2_description)
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
find_package(ament_cmake REQUIRED)
install(
DIRECTORY config launch meshes rviz urdf world
DESTINATION share/${PROJECT_NAME}/
)
ament_package()