turtlebot3_simulations/turtlebot3_manipulation_gazebo/CMakeLists.txt
Hyungyu Kim 6daf678145
fix the issue that tb3_manipulator is not loaded
Signed-off-by: Hyungyu Kim <kimhg@robotis.com>
2025-07-10 18:43:09 +09:00

24 lines
1.0 KiB
CMake

################################################################################
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 3.5)
project(turtlebot3_manipulation_gazebo)
################################################################################
# Find and load build settings from external packages
################################################################################
find_package(ament_cmake REQUIRED)
################################################################################
# Install
################################################################################
install(
DIRECTORY config gazebo launch ros2_control rviz urdf worlds models meshes
DESTINATION share/${PROJECT_NAME}
)
################################################################################
# Macro for ament package
################################################################################
ament_package()