-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
executable file
·82 lines (57 loc) · 1.35 KB
/
CMakeLists.txt
File metadata and controls
executable file
·82 lines (57 loc) · 1.35 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
cmake_minimum_required(VERSION 2.8.3)
project(robot4ws_msgs)
find_package(catkin REQUIRED COMPONENTS
std_msgs
#geometry_msgs
message_generation
)
################################################
## Declare ROS messages, services and actions ##
################################################
add_message_files(
FILES
Dynamixels.msg
Dynamixel_parameters.msg
Dynamixel_parameters1.msg
Operating_modes.msg
Operating_modes_int.msg
Motor_temperature.msg
Motor_temperature_int.msg
Motor_current.msg
Motor_current_int.msg
BatteryState.msg
JointState1.msg
SensorState.msg
Sound.msg
VersionInfo.msg
)
## Generate services in the 'srv' folder
add_service_files(
FILES
kinematic_mode.srv
enable_logiteck_joystick.srv
reset_board.srv
)
## Generate added messages and services with any dependencies listed here
generate_messages(
DEPENDENCIES
std_msgs
)
################################################
## Declare ROS dynamic reconfigure parameters ##
################################################
###################################
## catkin specific configuration ##
###################################
catkin_package(
CATKIN_DEPENDS std_msgs message_runtime
)
###########
## Build ##
###########
#############
## Install ##
#############
#############
## Testing ##
#############