forked from RethinkRobotics/baxter_examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
55 lines (48 loc) · 866 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
cmake_minimum_required(VERSION 3.0.2)
project(baxter_examples)
find_package(catkin
REQUIRED
COMPONENTS
rospy
xacro
actionlib
sensor_msgs
control_msgs
trajectory_msgs
cv_bridge
dynamic_reconfigure
baxter_core_msgs
baxter_interface
)
catkin_python_setup()
generate_dynamic_reconfigure_options(
cfg/JointSpringsExample.cfg
)
catkin_package(
CATKIN_DEPENDS
rospy
xacro
actionlib
sensor_msgs
control_msgs
trajectory_msgs
cv_bridge
dynamic_reconfigure
baxter_core_msgs
baxter_interface
)
install(
DIRECTORY scripts/
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
USE_SOURCE_PERMISSIONS
)
install(
DIRECTORY launch/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/launch
USE_SOURCE_PERMISSIONS
)
install(
DIRECTORY share/
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/share
USE_SOURCE_PERMISSIONS
)