mirror of
https://github.com/elephantrobotics/mycobot_ros.git
synced 2026-07-05 19:47:04 +00:00
21 lines
570 B
CMake
21 lines
570 B
CMake
cmake_minimum_required(VERSION 2.8.3)
|
|
project(mycobot_280arduino_moveit)
|
|
|
|
find_package(catkin REQUIRED
|
|
rospy
|
|
std_msgs
|
|
moveit_msgs
|
|
)
|
|
|
|
catkin_package()
|
|
|
|
## Mark executable scripts (Python etc.) for installation
|
|
## in contrast to setup.py, you can choose the destination
|
|
catkin_install_python(PROGRAMS
|
|
scripts/sync_plan.py
|
|
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
|
|
)
|
|
|
|
install(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
|
|
PATTERN "setup_assistant.launch" EXCLUDE)
|
|
install(DIRECTORY config DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
|