forked from coin-or/qpOASES
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakeLists.txt
337 lines (285 loc) · 8.08 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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
##
## This file is part of qpOASES.
##
## qpOASES -- An Implementation of the Online Active Set Strategy.
## Copyright (C) 2007-2017 by Hans Joachim Ferreau, Andreas Potschka,
## Christian Kirches et al. All rights reserved.
##
## qpOASES 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 2.1 of the License, or (at your option) any later version.
##
## qpOASES 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 Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public
## License along with qpOASES; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
##
##
## Filename: CMakeLists.txt
## Author: Hans Joachim Ferreau (thanks to Milan Vukov), Aravind Vijayan (ANYbotics)
## Version: 3.2.1
##
# NOTE(apoghosov): The comment above is just for historical reasons ... the package was migrated to ROS2 and the file
# was changed.
cmake_minimum_required(VERSION 3.16.3)
project(qp_oases)
set(CMAKE_CXX_STANDARD 17)
add_compile_options(-Wall -pedantic -Wfloat-equal -Wshadow -DLINUX -finline-functions -D__NO_COPYRIGHT__ -D__SUPPRESSANYOUTPUT__ -D__AVOID_LA_NAMING_CONFLICTS__)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
if("$ENV{ROS_VERSION}" STREQUAL "1")
find_package(catkin REQUIRED)
catkin_package(
INCLUDE_DIRS
include
LIBRARIES
${PROJECT_NAME}
CATKIN_DEPENDS
)
add_library(${PROJECT_NAME}
src/BLASReplacement.cpp
src/Bounds.cpp
src/Constraints.cpp
src/Flipper.cpp
src/Indexlist.cpp
src/LAPACKReplacement.cpp
src/Matrices.cpp
src/MessageHandling.cpp
src/Options.cpp
src/OQPinterface.cpp
src/QProblem.cpp
src/QProblemB.cpp
src/SolutionAnalysis.cpp
src/SparseSolver.cpp
src/SQProblem.cpp
src/SQProblemSchur.cpp
src/SubjectTo.cpp
src/Utils.cpp
)
add_dependencies(${PROJECT_NAME}
${catkin_EXPORTED_TARGETS}
)
target_include_directories(${PROJECT_NAME} PRIVATE
include
)
target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC
${catkin_INCLUDE_DIRS}
)
target_link_libraries(${PROJECT_NAME}
${catkin_LIBRARIES}
)
install(
TARGETS
${PROJECT_NAME}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(
DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)
############################################################
######################### examples #########################
############################################################
# compile qpOASES examples
SET(EXAMPLE_NAMES
example1
example1a
example1b
example2
example3
example3b
example4
example5
exampleLP
qrecipe
qrecipeSchur
)
FOREACH (ELEMENT ${EXAMPLE_NAMES})
add_executable(${PROJECT_NAME}_${ELEMENT}
examples/${ELEMENT}.cpp
)
target_include_directories(${PROJECT_NAME}_${ELEMENT} PRIVATE
include
)
target_include_directories(${PROJECT_NAME}_${ELEMENT} SYSTEM PUBLIC
${catkin_INCLUDE_DIRS}
)
target_link_libraries(${PROJECT_NAME}_${ELEMENT}
${PROJECT_NAME}
)
install(
TARGETS
${PROJECT_NAME}_${ELEMENT}
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
ENDFOREACH (ELEMENT ${EXAMPLE_NAMES})
##########
## Test ##
##########
## GTest.
if(CATKIN_ENABLE_TESTING)
catkin_add_gtest(test_${PROJECT_NAME}
test/TestExample1.cpp
test/TestExample1a.cpp
test/TestExample1b.cpp
test/TestExample2.cpp
test/TestExample4.cpp
test/TestExample5.cpp
test/TestExample6.cpp
test/TestExample7.cpp
test/TestExampleLP.cpp
test/TestExternalCholesky1.cpp
test/TestGradientShift.cpp
test/TestGuessedWS1.cpp
test/TestIdentitySQProblem.cpp
test/TestIndexList.cpp
test/TestInfeasible1.cpp
test/TestJanick1.cpp
test/TestJanick2.cpp
test/TestMatrices.cpp
test/TestReleaseBug.cpp
test/TestSmallSchur.cpp
test/TestVanBareIsUnboundedQP.cpp
)
target_include_directories(test_${PROJECT_NAME} PRIVATE
include
test
)
target_include_directories(test_${PROJECT_NAME} SYSTEM PUBLIC
${catkin_INCLUDE_DIRS}
)
target_link_libraries(test_${PROJECT_NAME}
gtest_main
${PROJECT_NAME}
)
# Generate test coverage report -> ${PROJECT_BINARY_DIR}/cmake_code_coverage/${PROJECT_NAME}/index.html
find_package(cmake_code_coverage QUIET)
if(cmake_code_coverage_FOUND)
add_gtest_coverage(
TEST_BUILD_TARGETS
test_${PROJECT_NAME}
)
endif(cmake_code_coverage_FOUND)
endif()
###########
## Clang ##
###########
#find_package(cmake_clang_tools QUIET)
#if(cmake_clang_tools_FOUND)
# add_default_clang_tooling()
#endif(cmake_clang_tools_FOUND)
else() # ROS version 2
add_compile_options(-Wno-overloaded-virtual)
set(PACKAGE_DEPENDENCIES
)
find_package(ament_cmake REQUIRED)
foreach(PKG ${PACKAGE_DEPENDENCIES})
find_package(${PKG} REQUIRED)
endforeach()
add_library(${PROJECT_NAME} SHARED
src/BLASReplacement.cpp
src/Bounds.cpp
src/Constraints.cpp
src/Flipper.cpp
src/Indexlist.cpp
src/LAPACKReplacement.cpp
src/Matrices.cpp
src/MessageHandling.cpp
src/Options.cpp
src/OQPinterface.cpp
src/QProblem.cpp
src/QProblemB.cpp
src/SolutionAnalysis.cpp
src/SparseSolver.cpp
src/SQProblem.cpp
src/SQProblemSchur.cpp
src/SubjectTo.cpp
src/Utils.cpp
)
target_include_directories(${PROJECT_NAME}
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include/${PROJECT_NAME}>
)
ament_target_dependencies(${PROJECT_NAME} ${PACKAGE_DEPENDENCIES})
install(DIRECTORY include/
DESTINATION include/${PROJECT_NAME}
)
install(TARGETS ${PROJECT_NAME}
EXPORT export_${PROJECT_NAME}
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
)
ament_export_targets(export_${PROJECT_NAME} HAS_LIBRARY_TARGET)
##########
## Test ##
##########
if(BUILD_TESTING)
############################################################
######################### examples #########################
############################################################
# compile qpOASES examples
# FIXME(apoghosov): do we really need to compile them?
set(EXAMPLE_NAMES
example1
example1a
example1b
example2
example3
example3b
example4
example5
exampleLP
qrecipe
qrecipeSchur
)
foreach(ELEMENT ${EXAMPLE_NAMES})
add_executable(${PROJECT_NAME}_${ELEMENT}
examples/${ELEMENT}.cpp
)
target_link_libraries(${PROJECT_NAME}_${ELEMENT}
${PROJECT_NAME}
)
endforeach(ELEMENT ${EXAMPLE_NAMES})
find_package(ament_cmake_gtest REQUIRED)
ament_add_gtest(test_${PROJECT_NAME}
test/TestExample1.cpp
test/TestExample1a.cpp
test/TestExample1b.cpp
test/TestExample2.cpp
test/TestExample4.cpp
test/TestExample5.cpp
test/TestExample6.cpp
test/TestExample7.cpp
test/TestExampleLP.cpp
test/TestExternalCholesky1.cpp
test/TestGradientShift.cpp
test/TestGuessedWS1.cpp
test/TestIdentitySQProblem.cpp
test/TestIndexList.cpp
test/TestInfeasible1.cpp
test/TestJanick1.cpp
test/TestJanick2.cpp
test/TestMatrices.cpp
test/TestReleaseBug.cpp
test/TestSmallSchur.cpp
test/TestVanBareIsUnboundedQP.cpp
)
target_link_libraries(test_${PROJECT_NAME} ${PROJECT_NAME})
# FIXME(apoghosov): is this the way we should do ROS2 code coverage
find_package(cmake_code_coverage QUIET)
if(cmake_code_coverage_FOUND)
add_gtest_coverage(TEST_BUILD_TARGETS test_${PROJECT_NAME})
endif(cmake_code_coverage_FOUND)
endif()
ament_package()
endif()