-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
66 lines (53 loc) · 1.18 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
cmake_minimum_required(VERSION 2.8.3)
project(robotics_project)
## Compile as C++11, supported in ROS Kinetic and newer
# add_compile_options(-std=c++11)
find_package(catkin REQUIRED
rospy
message_generation
std_msgs
std_srvs
dynamic_reconfigure
actionlib
actionlib_msgs
aruco_ros
geometry_msgs
moveit_msgs
moveit_commander
)
catkin_python_setup()
add_service_files(
FILES
MoveHead.srv
)
add_action_files(
FILES
PickUpPose.action
)
generate_messages(
DEPENDENCIES
actionlib_msgs geometry_msgs std_msgs
)
generate_dynamic_reconfigure_options(
cfg/SphericalGrasp.cfg
)
catkin_package(
# INCLUDE_DIRS include
# LIBRARIES robotics_project
# CATKIN_DEPENDS other_catkin_pkg
# DEPENDS system_lib
)
include_directories(
${catkin_INCLUDE_DIRS}
)
install(DIRECTORY launch config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
install(PROGRAMS
scripts/state_machines/sm_students.py
scripts/behaviour_trees/bt_students.py
scripts/utils/poses_pub.py
scripts/utils/gazebo_models_hdl.py
scripts/utils/grasps_server.py
scripts/utils/manipulation_client.py
scripts/utils/manipulation_server.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})