-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
59 lines (47 loc) · 957 Bytes
/
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
cmake_minimum_required(VERSION 2.8.3)
project(tiago_dual_pick_place)
find_package(catkin REQUIRED COMPONENTS
dynamic_reconfigure
actionlib
actionlib_msgs
geometry_msgs
moveit_msgs
rospy
std_msgs
std_srvs
)
generate_dynamic_reconfigure_options(
cfg/Grasps.cfg
)
add_action_files(
FILES
PickPlacePose.action
PickUpObject.action
PlaceObject.action
PlaceAutoObject.action
)
add_service_files(
FILES
PickPlaceObject.srv
PickPlaceObjects.srv
PickPlaceAutoObject.srv
PickPlaceSimple.srv
)
generate_messages(
DEPENDENCIES
actionlib_msgs geometry_msgs
)
catkin_package(
)
include_directories(
${catkin_INCLUDE_DIRS}
)
install(PROGRAMS
scripts/pick_and_place_server.py
scripts/pick_client.py
scripts/grasps_server.py
scripts/arm_conf.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(DIRECTORY launch config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})