cps_rmp220_support/CMakeLists.txt

105 lines
3.5 KiB
CMake
Raw Normal View History

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)
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
2025-01-13 13:45:56 +00:00
roscpp
rospy
std_msgs
actionlib
2025-01-13 13:46:57 +00:00
#move_base_msgs
2025-01-13 13:45:56 +00:00
tf
2025-01-09 10:10:01 +00:00
)
################################################################################
# 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}
)
2025-01-13 13:45:56 +00:00
add_executable(odom_publisher nodes/odom_publisher.cpp)
target_link_libraries(odom_publisher ${catkin_LIBRARIES})
2025-01-14 08:06:55 +00:00
## Mark executable scripts (Python etc.) for installation
## in contrast to setup.py, you can choose the destination
2025-01-16 08:57:38 +00:00
#catkin_install_python(PROGRAMS
# nodes/odom_publisher_python.py
# nodes/odom_publisher_linus.py
# nodes/odom_publisher_fromTwist.py
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
#)
# Find all Python scripts in the nodes/ directory
file(GLOB python_scripts nodes/*.py)
# Mark all found scripts as executable and install them
catkin_install_python(PROGRAMS ${python_scripts}
2025-01-14 08:06:55 +00:00
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
2025-01-16 08:57:38 +00:00
2025-01-09 10:10:01 +00:00
################################################################################
# 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}
)
2025-01-17 12:30:02 +00:00
# Install configuration files
install(DIRECTORY config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
FILES_MATCHING PATTERN "*.yaml"
)
2025-01-09 10:10:01 +00:00
################################################################################
# Test
################################################################################