################################################################################ # 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()