course2_ws/my_robot1_description/CMakeLists.txt

17 lines
345 B
CMake
Raw Normal View History

2024-12-19 00:49:29 +00:00
cmake_minimum_required(VERSION 3.8)
project(my_robot1_description)
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 urdf launch rviz
DESTINATION share/${PROJECT_NAME}/
)
ament_package()