-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
283 lines (234 loc) · 6.45 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
cmake_minimum_required(VERSION 2.8.3)
project(allegro_hand_kdl)
## Compile as C++11, supported in ROS Kinetic and newer
add_compile_options(-std=c++11)
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS
kdl_parser
roscpp
tf2_ros
kdl_control_tools
kdl_conversions
eigen_conversions
std_msgs
message_generation
actionlib_msgs
)
find_package(Eigen3 REQUIRED)
find_package(orocos_kdl REQUIRED)
# For YouCompleteMe
set( CMAKE_EXPORT_COMPILE_COMMANDS ON )
################################################
## Declare ROS messages, services and actions ##
################################################
add_service_files(
FILES
PoseRequest.srv
)
add_action_files(
DIRECTORY action
FILES
PoseControl.action
)
## Generate added messages and services
generate_messages(DEPENDENCIES std_msgs actionlib_msgs geometry_msgs)
################################################
## Declare ROS dynamic reconfigure parameters ##
################################################
###################################
## catkin specific configuration ##
###################################
catkin_package(
INCLUDE_DIRS include
LIBRARIES ${PROJECT_NAME}
CATKIN_DEPENDS
kdl_parser
roscpp
tf2_ros
kdl_conversions
kdl_control_tools
eigen_conversions
message_runtime
actionlib_msgs
DEPENDS EIGEN3 orocos_kdl
)
###########
## Build ##
###########
## Specify additional locations of header files
## Your package locations should be listed before other locations
include_directories(
include
${catkin_INCLUDE_DIRS}
${EIGEN3_INCLUDE_DIRS}
${orocos_kdl_INCLUDE_DIRS}
)
## Declare a C++ library
add_library(${PROJECT_NAME}
src/allegro_kdl_config.cpp
src/kinematics.cpp
src/inverse_dynamics.cpp
src/cartesian_force.cpp
src/joint_position_control.cpp
src/cartesian_position_control.cpp
src/joint_trajectory_control.cpp
src/cartesian_trajectory_control.cpp
include/allegro_hand_kdl/template_trajectory_control.h
include/allegro_hand_kdl/pose_control_client.h
)
## Add cmake target dependencies of the library
## as an example, code may need to be generated before libraries
## either from message generation or dynamic reconfigure
# add_dependencies(${PROJECT_NAME} ${catkin_EXPORTED_TARGETS})
## Declare a C++ executable
## With catkin_make all packages are built within a single CMake context
## The recommended prefix ensures that target names across packages don't collide
add_executable(envelop_force
src/nodes/envelop_force.cpp
src/cartesian_force.cpp
src/allegro_kdl_config.cpp
)
add_executable(fk_publisher
src/nodes/fk_publisher.cpp
src/kinematics.cpp
src/allegro_kdl_config.cpp
)
add_executable(control_force
src/nodes/force_control.cpp
src/cartesian_force.cpp
src/allegro_kdl_config.cpp
)
add_executable(gravity_compensate
src/nodes/gravity_compensater.cpp
src/inverse_dynamics.cpp
src/allegro_kdl_config.cpp
)
add_executable(base_pose_publisher
src/nodes/base_pose_publisher.cpp
)
add_executable(joint_pose_server
src/servers/joint_pose_server.cpp
src/joint_position_control.cpp
src/allegro_kdl_config.cpp
src/inverse_dynamics.cpp
)
add_executable(cartesian_pose_server
src/servers/cartesian_pose_server.cpp
src/cartesian_position_control.cpp
src/allegro_kdl_config.cpp
src/kinematics.cpp
src/cartesian_force.cpp
)
add_executable(pose_action_server
src/servers/pose_action_server.cpp
src/allegro_kdl_config.cpp
src/kinematics.cpp
src/cartesian_position_control.cpp
src/joint_position_control.cpp
src/cartesian_force.cpp
)
add_executable(fake_control
src/nodes/fake_control.cpp
)
add_executable(pose_client
src/nodes/pose_client.cpp
src/allegro_kdl_config.cpp
)
## Test execulables
add_executable(kinematics_test
test/kinematics_node.cpp
src/allegro_kdl_config.cpp
src/kinematics.cpp
src/inverse_dynamics.cpp
)
add_executable(inverse_dynamics_test
test/inverse_dynamics_node.cpp
src/inverse_dynamics.cpp
src/allegro_kdl_config.cpp
)
add_executable(single_joint_control_test
test/single_joint_control_node.cpp
src/allegro_kdl_config.cpp
src/inverse_dynamics.cpp
)
# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
## Add cmake target dependencies of the executable
## same as for the library above
# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_dependencies(control_force ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_dependencies(joint_pose_server ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_dependencies(cartesian_pose_server ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_dependencies(pose_client ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
add_dependencies(pose_action_server ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
## Specify libraries to link a library or executable target against
target_link_libraries(envelop_force
${catkin_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(fk_publisher
${catkin_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(control_force
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(gravity_compensate
${catkin_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(base_pose_publisher
${catkin_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(pose_action_server
${catkin_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(cartesian_pose_server
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(joint_pose_server
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(fake_control
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(pose_client
${catkin_LIBRARIES}
)
target_link_libraries(kinematics_test
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(inverse_dynamics_test
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(single_joint_control_test
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
target_link_libraries(${PROJECT_NAME}
${catkin_LIBRARIES}
${EIGEN3_LIBRARIES}
${orocos_kdl_LIBRARIES}
)
#############
## Install ##
#############
#############
## Testing ##
#############