## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
rospy
std_msgs
message_generation
)
## Generate services in the 'srv' folder
add_service_files(
FILES
<your service file name>.srv
)
## Generate added messages and services with any dependencies listed here
generate_messages(
DEPENDENCIES
std_msgs # Or other packages containing msgs
)
## Mark executable scripts (Python etc.) for installation
## in contrast to setup.py, you can choose the destination
catkin_install_python(PROGRAMS
scripts/<name of your server node script>.py scripts/<name of your client node script>.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
<build_depend>message_generation</build_depend>
<exec_depend>message_runtime</exec_depend>