2025-01-09 10:10:01 +00:00
|
|
|
################################################################################
|
|
|
|
# Set minimum required version of cmake, project name and compile options
|
|
|
|
################################################################################
|
|
|
|
cmake_minimum_required(VERSION 3.0.2)
|
2023-04-12 08:11:46 +00:00
|
|
|
project(cps_rmp220_support)
|
2023-04-12 07:04:55 +00:00
|
|
|
|
2025-01-09 10:10:01 +00:00
|
|
|
################################################################################
|
|
|
|
# Find catkin packages and libraries for catkin and system dependencies
|
|
|
|
################################################################################
|
|
|
|
find_package(catkin REQUIRED COMPONENTS
|
|
|
|
urdf
|
|
|
|
xacro
|
|
|
|
)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Setup for python modules and scripts
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Declare ROS messages, services and actions
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Declare ROS dynamic reconfigure parameters
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Declare catkin specific configuration to be passed to dependent projects
|
|
|
|
################################################################################
|
|
|
|
catkin_package(
|
|
|
|
CATKIN_DEPENDS urdf xacro
|
|
|
|
)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Build
|
|
|
|
################################################################################
|
|
|
|
include_directories(
|
|
|
|
${catkin_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Install
|
|
|
|
################################################################################
|
|
|
|
install(DIRECTORY meshes rviz urdf
|
|
|
|
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Install description files
|
|
|
|
install(DIRECTORY description
|
|
|
|
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
|
|
|
FILES_MATCHING PATTERN "*.xacro" PATTERN "*.stl"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Install launch files
|
|
|
|
install(DIRECTORY launch
|
|
|
|
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
2025-01-09 10:33:08 +00:00
|
|
|
FILES_MATCHING PATTERN "*.launch*"
|
2025-01-09 10:10:01 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Install world files
|
|
|
|
install(DIRECTORY worlds
|
|
|
|
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
|
|
|
FILES_MATCHING PATTERN "*.world"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Install miscellaneous files like README, LICENSE, etc.
|
|
|
|
install(FILES README.md LICENSE.md
|
|
|
|
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
|
|
|
)
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Test
|
|
|
|
################################################################################
|