forked from stack-of-tasks/tsid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
281 lines (242 loc) · 9.01 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
#
# Copyright (c) 2017-2021 CNRS
#
# This file is part of tsid
# tsid is free software: you can redistribute it
# and/or modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, either version
# 3 of the License, or (at your option) any later version.
# tsid is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Lesser Public License for more details. You should have
# received a copy of the GNU Lesser General Public License along with
# tsid If not, see
# <http://www.gnu.org/licenses/>.
CMAKE_MINIMUM_REQUIRED(VERSION 3.1)
# Project properties
SET(PROJECT_ORG stack-of-tasks)
SET(PROJECT_NAME tsid)
SET(PROJECT_DESCRIPTION "Efficient Task Space Inverse Dynamics for Multi-body Systems based on Pinocchio")
SET(PROJECT_URL "https://github.com/${PROJECT_ORG}/${PROJECT_NAME}")
# Project options
OPTION(BUILD_PYTHON_INTERFACE "Build the python bindings" ON)
OPTION(INSTALL_PYTHON_INTERFACE_ONLY "Install *ONLY* the python bindings" OFF)
OPTION(SUFFIX_SO_VERSION "Suffix library name with its version" ON)
OPTION(INITIALIZE_WITH_NAN "Initialize Eigen entries with NaN" OFF)
OPTION(EIGEN_RUNTIME_NO_MALLOC "If ON, it can assert in case of runtime allocation" ON)
OPTION(EIGEN_NO_AUTOMATIC_RESIZING "If ON, it forbids automatic resizing of dynamics arrays and matrices" OFF)
# Project configuration
IF(NOT INSTALL_PYTHON_INTERFACE_ONLY)
SET(PROJECT_USE_CMAKE_EXPORT TRUE)
ENDIF(NOT INSTALL_PYTHON_INTERFACE_ONLY)
SET(CXX_DISABLE_WERROR TRUE)
SET(DOXYGEN_USE_MATHJAX YES)
SET(CMAKE_VERBOSE_MAKEFILE TRUE)
# JRL-cmakemodule setup
INCLUDE(cmake/base.cmake)
INCLUDE(cmake/boost.cmake)
INCLUDE(cmake/python.cmake)
INCLUDE(cmake/ide.cmake)
INCLUDE(cmake/apple.cmake)
# Handle APPLE Cmake policy
IF(APPLE)
APPLY_DEFAULT_APPLE_CONFIGURATION()
ENDIF(APPLE)
# Project definition
COMPUTE_PROJECT_ARGS(PROJECT_ARGS LANGUAGES CXX)
PROJECT(${PROJECT_NAME} ${PROJECT_ARGS})
IF(INITIALIZE_WITH_NAN)
MESSAGE(STATUS "Initialize with NaN all the Eigen entries.")
ADD_DEFINITIONS(-DEIGEN_INITIALIZE_MATRICES_BY_NAN)
ENDIF(INITIALIZE_WITH_NAN)
IF(EIGEN_RUNTIME_NO_MALLOC)
MESSAGE(STATUS "Option EIGEN_RUNTIME_NO_MALLOC on.")
ADD_DEFINITIONS(-DEIGEN_RUNTIME_NO_MALLOC)
ENDIF(EIGEN_RUNTIME_NO_MALLOC)
IF(EIGEN_NO_AUTOMATIC_RESIZING)
MESSAGE(STATUS "Option EIGEN_NO_AUTOMATIC_RESIZING on.")
ADD_DEFINITIONS(-DEIGEN_NO_AUTOMATIC_RESIZING)
ENDIF(EIGEN_NO_AUTOMATIC_RESIZING)
CHECK_MINIMAL_CXX_STANDARD(11 ENFORCE)
# Project dependencies
ADD_PROJECT_DEPENDENCY(pinocchio 2.3.1 REQUIRED)
ADD_PROJECT_DEPENDENCY(eiquadprog 1.1.3 REQUIRED)
IF(BUILD_TESTING)
FIND_PACKAGE(Boost REQUIRED COMPONENTS unit_test_framework)
ENDIF(BUILD_TESTING)
IF(BUILD_PYTHON_INTERFACE)
FINDPYTHON()
SET(PYWRAP ${PROJECT_NAME}_pywrap)
ADD_PROJECT_DEPENDENCY(eigenpy REQUIRED)
SEARCH_FOR_BOOST_PYTHON(REQUIRED)
ENDIF(BUILD_PYTHON_INTERFACE)
# Main Library
SET(${PROJECT_NAME}_MATH_HEADERS
include/tsid/math/fwd.hpp
include/tsid/math/utils.hpp
include/tsid/math/constraint-base.hpp
include/tsid/math/constraint-equality.hpp
include/tsid/math/constraint-inequality.hpp
include/tsid/math/constraint-bound.hpp
)
SET(${PROJECT_NAME}_TASKS_HEADERS
include/tsid/tasks/fwd.hpp
include/tsid/tasks/task-base.hpp
include/tsid/tasks/task-motion.hpp
include/tsid/tasks/task-actuation.hpp
include/tsid/tasks/task-contact-force.hpp
include/tsid/tasks/task-com-equality.hpp
include/tsid/tasks/task-se3-equality.hpp
include/tsid/tasks/task-contact-force-equality.hpp
include/tsid/tasks/task-cop-equality.hpp
include/tsid/tasks/task-actuation-equality.hpp
include/tsid/tasks/task-actuation-bounds.hpp
include/tsid/tasks/task-joint-bounds.hpp
include/tsid/tasks/task-joint-posture.hpp
include/tsid/tasks/task-joint-posVelAcc-bounds.hpp
include/tsid/tasks/task-capture-point-inequality.hpp
include/tsid/tasks/task-angular-momentum-equality.hpp
)
SET(${PROJECT_NAME}_CONTACTS_HEADERS
include/tsid/contacts/fwd.hpp
include/tsid/contacts/contact-base.hpp
include/tsid/contacts/contact-6d.hpp
include/tsid/contacts/contact-point.hpp
)
SET(${PROJECT_NAME}_TRAJECTORIES_HEADERS
include/tsid/trajectories/fwd.hpp
include/tsid/trajectories/trajectory-base.hpp
include/tsid/trajectories/trajectory-se3.hpp
include/tsid/trajectories/trajectory-euclidian.hpp
)
SET(${PROJECT_NAME}_SOLVERS_HEADERS
include/tsid/solvers/fwd.hpp
include/tsid/solvers/utils.hpp
include/tsid/solvers/solver-HQP-output.hpp
include/tsid/solvers/solver-HQP-base.hpp
include/tsid/solvers/solver-HQP-factory.hpp
include/tsid/solvers/solver-HQP-factory.hxx
include/tsid/solvers/solver-HQP-qpoases.hpp
include/tsid/solvers/solver-HQP-eiquadprog.hpp
include/tsid/solvers/solver-HQP-eiquadprog-rt.hpp
include/tsid/solvers/solver-HQP-eiquadprog-rt.hxx
include/tsid/solvers/solver-HQP-eiquadprog-fast.hpp
)
SET(${PROJECT_NAME}_ROBOTS_HEADERS
include/tsid/robots/fwd.hpp
include/tsid/robots/robot-wrapper.hpp
)
SET(${PROJECT_NAME}_FORMULATIONS_HEADERS
include/tsid/formulations/contact-level.hpp
include/tsid/formulations/inverse-dynamics-formulation-base.hpp
include/tsid/formulations/inverse-dynamics-formulation-acc-force.hpp
)
FILE(GLOB ${PYWRAP}_HEADERS
include/tsid/bindings/python/fwd.hpp
include/tsid/bindings/python/constraint/*.hpp
include/tsid/bindings/python/contacts/*.hpp
include/tsid/bindings/python/formulations/*.hpp
include/tsid/bindings/python/robots/*.hpp
include/tsid/bindings/python/solvers/*.hpp
include/tsid/bindings/python/tasks/*.hpp
include/tsid/bindings/python/trajectories/*.hpp
include/tsid/bindings/python/utils/*.hpp
)
SET(${PROJECT_NAME}_HEADERS
include/tsid/config.hpp
include/tsid/macros.hpp
include/tsid/deprecation.hpp
include/tsid/utils/statistics.hpp
include/tsid/utils/stop-watch.hpp
include/tsid/utils/Stdafx.hh
${${PROJECT_NAME}_MATH_HEADERS}
${${PROJECT_NAME}_TASKS_HEADERS}
${${PROJECT_NAME}_CONTACTS_HEADERS}
${${PROJECT_NAME}_TRAJECTORIES_HEADERS}
${${PROJECT_NAME}_SOLVERS_HEADERS}
${${PROJECT_NAME}_ROBOTS_HEADERS}
${${PROJECT_NAME}_FORMULATIONS_HEADERS}
)
LIST(REMOVE_DUPLICATES ${PROJECT_NAME}_HEADERS)
SET(${PROJECT_NAME}_MATH_SOURCES
src/math/constraint-base.cpp
src/math/constraint-equality.cpp
src/math/constraint-inequality.cpp
src/math/constraint-bound.cpp
src/math/utils.cpp
)
SET(${PROJECT_NAME}_TASKS_SOURCES
src/tasks/task-base.cpp
src/tasks/task-actuation-bounds.cpp
src/tasks/task-actuation-equality.cpp
src/tasks/task-actuation.cpp
src/tasks/task-com-equality.cpp
src/tasks/task-contact-force-equality.cpp
src/tasks/task-contact-force.cpp
src/tasks/task-cop-equality.cpp
src/tasks/task-joint-bounds.cpp
src/tasks/task-joint-posture.cpp
src/tasks/task-joint-posVelAcc-bounds.cpp
src/tasks/task-capture-point-inequality.cpp
src/tasks/task-motion.cpp
src/tasks/task-se3-equality.cpp
src/tasks/task-angular-momentum-equality.cpp
)
SET(${PROJECT_NAME}_CONTACTS_SOURCES
src/contacts/contact-base.cpp
src/contacts/contact-6d.cpp
src/contacts/contact-point.cpp
)
SET(${PROJECT_NAME}_TRAJECTORIES_SOURCES
src/trajectories/trajectory-se3.cpp
src/trajectories/trajectory-euclidian.cpp
)
SET(${PROJECT_NAME}_SOLVERS_SOURCES
src/solvers/solver-HQP-base.cpp
src/solvers/solver-HQP-factory.cpp
src/solvers/solver-HQP-eiquadprog.cpp
src/solvers/solver-HQP-eiquadprog-fast.cpp
src/solvers/solver-HQP-qpoases.cpp
src/solvers/utils.cpp
)
SET(${PROJECT_NAME}_ROBOTS_SOURCES
src/robots/robot-wrapper.cpp
)
SET(${PROJECT_NAME}_FORMULATIONS_SOURCES
src/formulations/contact-level.cpp
src/formulations/inverse-dynamics-formulation-base.cpp
src/formulations/inverse-dynamics-formulation-acc-force.cpp
)
SET(${PROJECT_NAME}_SOURCES
src/utils/statistics.cpp
src/utils/stop-watch.cpp
${${PROJECT_NAME}_MATH_SOURCES}
${${PROJECT_NAME}_TASKS_SOURCES}
${${PROJECT_NAME}_CONTACTS_SOURCES}
${${PROJECT_NAME}_TRAJECTORIES_SOURCES}
${${PROJECT_NAME}_SOLVERS_SOURCES}
${${PROJECT_NAME}_ROBOTS_SOURCES}
${${PROJECT_NAME}_FORMULATIONS_SOURCES}
)
ADD_HEADER_GROUP(${PROJECT_NAME}_HEADERS)
ADD_SOURCE_GROUP(${PROJECT_NAME}_SOURCES)
ADD_LIBRARY(${PROJECT_NAME} SHARED
${${PROJECT_NAME}_SOURCES} ${${PROJECT_NAME}_HEADERS})
TARGET_INCLUDE_DIRECTORIES(${PROJECT_NAME} PUBLIC $<INSTALL_INTERFACE:include>)
TARGET_LINK_LIBRARIES(${PROJECT_NAME} PUBLIC
pinocchio::pinocchio eiquadprog::eiquadprog)
IF(SUFFIX_SO_VERSION)
SET_TARGET_PROPERTIES(${PROJECT_NAME} PROPERTIES SOVERSION ${PROJECT_VERSION})
ENDIF(SUFFIX_SO_VERSION)
IF(NOT INSTALL_PYTHON_INTERFACE_ONLY)
INSTALL(TARGETS ${PROJECT_NAME} EXPORT ${TARGETS_EXPORT_NAME} DESTINATION lib)
ENDIF(NOT INSTALL_PYTHON_INTERFACE_ONLY)
ADD_SUBDIRECTORY(bindings)
IF(BUILD_TESTING)
ADD_SUBDIRECTORY(tests)
ENDIF(BUILD_TESTING)
# --- PACKAGING ----------------------------------------------------------------
IF(NOT INSTALL_PYTHON_INTERFACE_ONLY)
INSTALL(FILES package.xml DESTINATION share/${PROJECT_NAME})
ENDIF(NOT INSTALL_PYTHON_INTERFACE_ONLY)