forked from norlab-ulaval/libpointmatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
589 lines (490 loc) · 20.3 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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
cmake_minimum_required(VERSION 2.8.12)
include(CheckSymbolExists)
include(GNUInstallDirs) # populate CMAKE_INSTALL_{LIB,BIN}DIR
#========================
# Project details / setup
#========================
set(CMAKE_POSITION_INDEPENDENT_CODE ON) # add -fPIC as required
# Extract version from header, done first to satisfy CMP0048,
# see `cmake --help-policy CMP0048` for more information.
file(
STRINGS # Read in a file to memory.
pointmatcher/PointMatcher.h # File to parse for version number.
POINTMATCHER_PROJECT_VERSION # Where to store the results (should just be one line)
REGEX "#define POINTMATCHER_VERSION " # The space after is important to ignore 'POINTMATCHER_VERSION_INT'
)
# If no matches found, something is wrong with PointMatcher.h
if (NOT POINTMATCHER_PROJECT_VERSION)
message(SEND_ERROR "Cannot find version number in '${CMAKE_CURRENT_SOURCE_DIR}/pointmatcher/PointMatcher.h'.")
endif ()
# Transform '#define POINTMATCHER_VERSION "X.Y.Z"' into 'X.Y.Z'
string(REGEX REPLACE ".*\"(.*)\".*" "\\1" POINTMATCHER_PROJECT_VERSION "${POINTMATCHER_PROJECT_VERSION}")
# In 3.0+, project(...) should specify VERSION to satisfy CMP0048
if (CMAKE_VERSION VERSION_LESS 3.0.0)
project(libpointmatcher)
else ()
cmake_policy(SET CMP0048 NEW)
project(libpointmatcher VERSION ${POINTMATCHER_PROJECT_VERSION})
endif ()
# Check if 32 bit platform
# By default, libpointmatcher is not compatible with and will not build on a
# 32 bit system
if( NOT CMAKE_SIZEOF_VOID_P EQUAL 8 )
MESSAGE(SEND_ERROR "32 bits compiler detected. Libpointmatcher is only supported in 64 bits." )
SET( EX_PLATFORM 32 )
SET( EX_PLATFORM_NAME "x86" )
endif()
## WARNING: unsupported
## To force install as a 32 bit library, set BUILD_32 to true
if( BUILD_32 )
MESSAGE(STATUS "Building as a 32 bit library")
SET(CMAKE_CXX_FLAGS "-m32")
endif()
# Ensure proper build type
if (NOT CMAKE_BUILD_TYPE)
message("-- No build type specified; defaulting to CMAKE_BUILD_TYPE=Release.")
set(CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
FORCE)
else ()
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
message("\n=================================================================================")
message("\n-- Build type: Debug. Performance will be terrible!")
message("-- Add -DCMAKE_BUILD_TYPE=Release to the CMake command line to get an optimized build.")
message("\n=================================================================================")
endif ()
endif ()
#================= extra building definitions ==============================
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
add_definitions(-O3)
endif()
# For Windows
if( MSVC )
add_definitions( /D _VARIADIC_MAX=10 ) # VS2012 does not support tuples correctly yet
add_definitions( /D _USE_MATH_DEFINES) # defines M_PI for Visual Studio
add_definitions( /D _ENABLE_EXTENDED_ALIGNED_STORAGE) # this variable must be defined with VS2017 to acknowledge alignment changes of aligned_storage
endif()
#======================= installation =====================================
# Offer the user the choice of overriding the installation directories
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
set(INSTALL_BIN_DIR bin CACHE PATH "Installation directory for executables")
set(INSTALL_INCLUDE_DIR include CACHE PATH
"Installation directory for header files")
if(WIN32 AND NOT CYGWIN)
set(DEF_INSTALL_CMAKE_DIR CMake)
else()
set(DEF_INSTALL_CMAKE_DIR lib/cmake/pointmatcher)
endif()
set(INSTALL_CMAKE_DIR ${DEF_INSTALL_CMAKE_DIR} CACHE PATH "Installation directory for CMake files")
# Make relative paths absolute (needed later on)
foreach(p LIB BIN INCLUDE CMAKE)
set(var INSTALL_${p}_DIR)
if(NOT IS_ABSOLUTE "${${var}}")
set(${var} "${CMAKE_INSTALL_PREFIX}/${${var}}")
endif()
endforeach()
#===========================================================================
#======================== External Dependencies ===============================
# initially
set(EXTERNAL_LIBS "")
# compile local version of gtest and yaml-cpp
add_subdirectory(contrib)
#---------------------------
# DEPENDENCY: POSIX Threads
#---------------------------
find_package(Threads REQUIRED)
if (CMAKE_VERSION VERSION_LESS 3.1.0)
set(EXTERNAL_LIBS ${EXTERNAL_LIBS} ${CMAKE_THREAD_LIBS_INIT})
else()
set(EXTERNAL_LIBS ${EXTERNAL_LIBS} Threads::Threads)
endif()
#--------------------
# DEPENDENCY: boost
#--------------------
find_package(Boost COMPONENTS thread filesystem system program_options date_time REQUIRED)
if (Boost_MINOR_VERSION GREATER 47)
find_package(Boost COMPONENTS thread filesystem system program_options date_time chrono REQUIRED)
endif ()
#--------------------
# DEPENDENCY: eigen 3
#--------------------
find_path(EIGEN_INCLUDE_DIR NAMES signature_of_eigen3_matrix_library
HINTS ENV EIGEN3_INC_DIR
ENV EIGEN3_DIR
PATHS Eigen/Core
/usr/local/include
/usr/include
PATH_SUFFIXES include eigen3 eigen
DOC "Directory containing the Eigen3 header files"
)
# Suppress Eigen's warning by adding it to the system's library
include_directories(SYSTEM "${EIGEN_INCLUDE_DIR}")
#TODO: this should be a more standard way
#find_package(Eigen3 REQUIRED)
#message("-- eigen3 , version ${EIGEN_VERSION}")
#--------------------
# DEPENDENCY: nabo
#--------------------
if (NOT TARGET nabo)
# Find libnabo:
find_package(libnabo REQUIRED PATHS ${LIBNABO_INSTALL_DIR})
message(STATUS "libnabo found, version ${libnabo_VERSION} (include=${libnabo_INCLUDE_DIRS} libs=${libnabo_LIBRARIES})")
else()
# libnabo already part of this project (e.g. as a git submodule)
# (This, plus the use of cmake target properties in libnabo, will also
# introduce the required include directories, flags, etc.)
endif()
# This cmake target alias will be defined by either:
# a) libnabo sources if built as a git submodule in the same project than this library, or
# b) by libnabo-targets.cmake, included by find_package(libnabo) above.
set(libnabo_LIBRARIES libnabo::nabo)
#--------------------
# DEPENDENCY: OpenMP (optional)
#--------------------
set(USE_OPEN_MP FALSE CACHE BOOL "Set to TRUE to use OpenMP")
if (USE_OPEN_MP)
find_package(OpenMP)
if (OPENMP_FOUND)
add_definitions(-fopenmp -DHAVE_OPENMP)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
if (CMAKE_COMPILER_IS_GNUCC)
set(EXTERNAL_LIBS ${EXTERNAL_LIBS} gomp)
message("-- OpenMP found, parallel computer enabled")
endif()
endif()
endif ()
#--------------------
# DEPENDENCY: OpenCL (optional)
#--------------------
set(USE_OPEN_CL "false" CACHE BOOL "Set to ON to look for OpenCL, if your libnabo was compiled with CL support")
if (USE_OPEN_CL)
if (WIN32)
find_library(OPENCL_LIBRARIES opencl64)
if (!OPENCL_LIBRARIES)
find_library(OPENCL_LIBRARIES opencl32)
endif ()
else ()
find_library(OPENCL_LIBRARIES OpenCL ENV LD_LIBRARY_PATH)
endif ()
# if found, add
if (OPENCL_LIBRARIES)
set(EXTERNAL_LIBS ${EXTERNAL_LIBS} ${OPENCL_LIBRARIES})
message("-- openCL found, parallel computer enabled for kd-tree")
endif ()
endif()
#--------------------
# DEPENDENCY: yaml-cpp (local or system, optional)
#--------------------
option(USE_SYSTEM_YAML_CPP "Use system version of yaml-cpp rather than one packaged with libpointmatcher" FALSE)
if(USE_SYSTEM_YAML_CPP)
message(STATUS "Looking for yaml-cpp on system")
find_path(yaml-cpp_INCLUDE_DIRS yaml-cpp/yaml.h
/usr/local/include
)
find_library(yaml-cpp_LIBRARIES yaml-cpp PATHS
/usr/local/lib
)
if(yaml-cpp_INCLUDE_DIRS AND yaml-cpp_LIBRARIES)
set(yamlcpp_FOUND)
message("-- yaml-cpp found, text-based configuration enabled")
else()
message("-- yaml-cpp not found, text-based configuration and related applications disabled")
endif()
else()
include_directories(contrib/yaml-cpp-pm/include)
#note: this is not working....
#get_property(yaml-cpp-pm_INCLUDE TARGET yaml-cpp-pm PROPERTY INCLUDE_DIRECTORIES)
#include_directories(${yaml-cpp-pm_INCLUDE})
list(APPEND EXTERNAL_LIBS $<TARGET_FILE:yaml-cpp-pm>)
list(APPEND EXTRA_DEPS yaml-cpp-pm)
set(yamlcpp_FOUND)
get_property(yaml-cpp-pm_VERSION TARGET yaml-cpp-pm PROPERTY VERSION)
message("-- using built-in yaml-cpp, version ${yaml-cpp-pm_VERSION}")
message(" -- text-based configuration enabled")
endif()
#--------------------
# DEPENDENCY: rt (optional)
#--------------------
# link rt support if POSIX timers are used
check_symbol_exists(_POSIX_TIMERS "unistd.h;time.h" POSIX_TIMERS)
#============================= end dependencies =================================
#========================== libpointmatcher itself ==============================
# Check the compiler version as we need full C++11 support.
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# using Clang
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "3.3")
message(WARNING, "Your clang compiler has version ${CMAKE_CXX_COMPILER_VERSION}, while only version 3.3 or later is supported")
endif ()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")
# using AppleClang
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "5.1")
message(WARNING "Your XCode environment has version ${CMAKE_CXX_COMPILER_VERSION}, while only version 5.1 or later is supported")
endif()
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# using GCC
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.8.2")
message(WARNING, "Your g++ compiler has version ${CMAKE_CXX_COMPILER_VERSION}, while only version 4.8.2 or later is supported")
endif ()
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
# using MSVC
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "19.0.23506")
message(WARNING "Your Microsoft Visual C++ compiler has version ${CMAKE_CXX_COMPILER_VERSION}, while only version MSVC 2015 Update 1+ or later is supported")
endif()
endif ()
# enable C++11 support.
if (CMAKE_VERSION VERSION_LESS "3.1")
if (MSVC)
message(FATAL_ERROR, "CMake version 3.1 or later is required to compiler ${PROJECT_NAME} with Microsoft Visual C++")
endif ()
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set (CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")
else ()
set (CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
endif ()
else ()
set (CMAKE_CXX_STANDARD 11)
endif ()
# SOURCE
# Pointmatcher lib and install
set(POINTMATCHER_SRC
pointmatcher/Logger.cpp
pointmatcher/Exceptions.cpp
pointmatcher/DataPoints.cpp
pointmatcher/Matches.cpp
pointmatcher/ICP.cpp
pointmatcher/Registry.cpp
pointmatcher/Registrar.cpp
pointmatcher/DataPointsFilter.cpp
pointmatcher/Matcher.cpp
pointmatcher/OutlierFilter.cpp
pointmatcher/ErrorMinimizer.cpp
pointmatcher/Transformation.cpp
pointmatcher/TransformationChecker.cpp
pointmatcher/Inspector.cpp
pointmatcher/IO.cpp
pointmatcher/IOFunctions.cpp
pointmatcher/Bibliography.cpp
pointmatcher/Timer.cpp
pointmatcher/Histogram.cpp
pointmatcher/Parametrizable.cpp
pointmatcher/LoggerImpl.cpp
pointmatcher/MatchersImpl.cpp
pointmatcher/OutlierFiltersImpl.cpp
pointmatcher/TransformationsImpl.cpp
pointmatcher/TransformationCheckersImpl.cpp
pointmatcher/InspectorsImpl.cpp
#ErrorMinimizers
pointmatcher/ErrorMinimizers/PointToPlane.cpp
pointmatcher/ErrorMinimizers/PointToPlaneWithCov.cpp
pointmatcher/ErrorMinimizers/PointToPoint.cpp
pointmatcher/ErrorMinimizers/PointToPointWithCov.cpp
pointmatcher/ErrorMinimizers/PointToPointSimilarity.cpp
pointmatcher/ErrorMinimizers/Identity.cpp
#DataPointsFilters
pointmatcher/DataPointsFilters/Identity.cpp
pointmatcher/DataPointsFilters/RemoveNaN.cpp
pointmatcher/DataPointsFilters/MaxDist.cpp
pointmatcher/DataPointsFilters/MinDist.cpp
pointmatcher/DataPointsFilters/BoundingBox.cpp
pointmatcher/DataPointsFilters/MaxQuantileOnAxis.cpp
pointmatcher/DataPointsFilters/MaxDensity.cpp
pointmatcher/DataPointsFilters/SurfaceNormal.cpp
pointmatcher/DataPointsFilters/SamplingSurfaceNormal.cpp
pointmatcher/DataPointsFilters/OrientNormals.cpp
pointmatcher/DataPointsFilters/IncidenceAngle.cpp
pointmatcher/DataPointsFilters/RandomSampling.cpp
pointmatcher/DataPointsFilters/MaxPointCount.cpp
pointmatcher/DataPointsFilters/FixStepSampling.cpp
pointmatcher/DataPointsFilters/Shadow.cpp
pointmatcher/DataPointsFilters/SimpleSensorNoise.cpp
pointmatcher/DataPointsFilters/ObservationDirection.cpp
pointmatcher/DataPointsFilters/VoxelGrid.cpp
pointmatcher/DataPointsFilters/CutAtDescriptorThreshold.cpp
pointmatcher/DataPointsFilters/Elipsoids.cpp
pointmatcher/DataPointsFilters/Gestalt.cpp
pointmatcher/DataPointsFilters/OctreeGrid.cpp
pointmatcher/DataPointsFilters/NormalSpace.cpp
pointmatcher/DataPointsFilters/CovarianceSampling.cpp
pointmatcher/DataPointsFilters/DistanceLimit.cpp
pointmatcher/DataPointsFilters/RemoveSensorBias.cpp
pointmatcher/DataPointsFilters/Sphericality.cpp
pointmatcher/DataPointsFilters/Saliency.cpp
pointmatcher/DataPointsFilters/SpectralDecomposition.cpp
)
file(GLOB_RECURSE POINTMATCHER_HEADERS "pointmatcher/*.h")
# In CMake >=3.4 we can easily build shared libraries in Mac and Windows.
# No need to distinguish between operating systems while building targets
add_library(pointmatcher ${POINTMATCHER_SRC} ${POINTMATCHER_HEADERS} )
target_include_directories(pointmatcher PUBLIC
$<INSTALL_INTERFACE:>
$<INSTALL_INTERFACE:pointmatcher>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/pointmatcher>
$<BUILD_INTERFACE:${Boost_INCLUDE_DIRS}>
)
if (libnabo_INCLUDE_DIRS)
include_directories(pointmatcher PUBLIC ${libnabo_INCLUDE_DIRS})
endif()
if (NOT MSVC)
target_compile_options(pointmatcher PRIVATE -Wall)
endif()
if(yaml-cpp_INCLUDE_DIRS AND yaml-cpp_LIBRARIES)
target_link_libraries(pointmatcher PRIVATE ${yaml-cpp_LIBRARIES})
target_include_directories(pointmatcher PRIVATE ${yaml-cpp_INCLUDE_DIRS})
else() # embedded version:
# This could be enabled if yaml-cpp-pm was in the "export set"
#target_link_libraries(pointmatcher PRIVATE yaml-cpp-pm)
# For now, let's add yaml-cpp-pm output to EXTERNAL_LIBS
endif()
target_link_libraries(pointmatcher PUBLIC ${Boost_LIBRARIES})
target_link_libraries(pointmatcher PRIVATE ${libnabo_LIBRARIES})
target_link_libraries(pointmatcher PRIVATE ${EXTERNAL_LIBS})
if (EXTRA_DEPS)
add_dependencies(pointmatcher ${EXTRA_DEPS})
endif()
if (POSIX_TIMERS AND NOT APPLE)
target_link_libraries(pointmatcher PRIVATE rt)
endif ()
set_target_properties(pointmatcher PROPERTIES VERSION "${POINTMATCHER_PROJECT_VERSION}" SOVERSION 1)
#========================= Install commands ===========================
install(FILES
pointmatcher/DeprecationWarnings.h
pointmatcher/PointMatcher.h
pointmatcher/PointMatcherPrivate.h
pointmatcher/Parametrizable.h
pointmatcher/Registrar.h
pointmatcher/Timer.h
pointmatcher/Functions.h
pointmatcher/IO.h
DESTINATION ${INSTALL_INCLUDE_DIR}/pointmatcher
)
install(TARGETS pointmatcher EXPORT ${PROJECT_NAME}-config
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
)
if(GENERATE_API_DOC)
install(FILES README.md DESTINATION share/doc/${PROJECT_NAME})
if (DOXYGEN_FOUND)
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/doc/html DESTINATION ${DOC_INSTALL_TARGET})
endif ()
endif()
# Install package.xml for catkin
install(FILES package.xml DESTINATION "share/${PROJECT_NAME}")
#========================= Documentation ===========================
set(GENERATE_API_DOC false CACHE BOOL "Set to true to build the documentation using Doxygen")
if(GENERATE_API_DOC)
message("-- API Documentation (doxygen): enabled")
# Note: there seems to be equations in the documentation leading to the
# use of Latex anyway. This cause problems for user without latex...
set(DOXYFILE_LATEX "NO")
include(UseDoxygen.cmake)
set(DOC_INSTALL_TARGET "share/doc/${PROJECT_NAME}/api" CACHE STRING "Target where to install doxygen documentation")
add_dependencies(pointmatcher doc)
else()
message("-- API Documentation (doxygen): disabled")
endif()
#=============== trigger other makefile ======================
# Example programs
option(POINTMATCHER_BUILD_EXAMPLES "Build libpointmatcher examples" ON)
if (POINTMATCHER_BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
# Evaluation programs
option(POINTMATCHER_BUILD_EVALUATIONS "Build libpointmatcher evaluations" ON)
if (POINTMATCHER_BUILD_EVALUATIONS)
add_subdirectory(evaluations)
endif()
# Unit testing
option(BUILD_TESTS "Build all tests." OFF)
if (BUILD_TESTS)
enable_testing()
add_subdirectory(utest)
endif()
# ========================= Python module =============================
option(BUILD_PYTHON_MODULE "Build the python module for libpointmatcher" OFF)
option(USE_SYSTEM_PYBIND11 "Use the system installed pybind11 rather than using a git submodule" ON)
set(PYTHON_INSTALL_TARGET "" CACHE PATH "Target where to install the python module")
if (BUILD_PYTHON_MODULE)
add_subdirectory(python)
endif()
#=================== allow find_package() =========================
#
# the following case be used in an external project requiring libpointmatcher:
# ...
# find_package(libpointmatcher)
# include_directories(${libpointmatcher_INCLUDE_DIRS})
# target_link_libraries(executableName ${libpointmatcher_LIBRARIES})
# ...
# Install cmake config module
install(EXPORT ${PROJECT_NAME}-config DESTINATION share/${PROJECT_NAME}/cmake)
# make project importable from build_dir:
export(
TARGETS pointmatcher
FILE ${CMAKE_BINARY_DIR}/${PROJECT_NAME}-config.cmake
)
add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS pointmatcher)
# Create variable for the local build tree
get_property(CONF_INCLUDE_DIRS DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES)
# Create variable with the library location
set(POINTMATCHER_LIB $<TARGET_FILE:pointmatcher>)
# Configure config file for local build tree
configure_file(libpointmatcherConfig.cmake.in
"${PROJECT_BINARY_DIR}/libpointmatcherConfig.cmake" @ONLY)
# 2- installation build #
# Change the include location for the case of an install location
set(CONF_INCLUDE_DIRS ${INSTALL_INCLUDE_DIR} ${CONF_INCLUDE_DIRS} )
#FIXME: this will only be applied to installed files. Confirm that we want that.
# gather all the includes but remove ones in the source tree
# because we added an include for the local yaml-cpp-pm we should also remove it
list(REMOVE_ITEM CONF_INCLUDE_DIRS ${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/contrib/yaml-cpp-pm/include)
# We put the generated file for installation in a different repository (i.e., ./CMakeFiles/)
configure_file(libpointmatcherConfig.cmake.in
"${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/libpointmatcherConfig.cmake" @ONLY)
# The same versioning file can be used for both cases
configure_file(libpointmatcherConfigVersion.cmake.in
"${PROJECT_BINARY_DIR}/libpointmatcherConfigVersion.cmake" @ONLY)
# Install the libpointmatcherConfig.cmake and libpointmatcherConfigVersion.cmake
install(
FILES
"${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/libpointmatcherConfig.cmake"
"${PROJECT_BINARY_DIR}/libpointmatcherConfigVersion.cmake"
DESTINATION "${INSTALL_CMAKE_DIR}" COMPONENT dev
)
# useful for TRADR european project. TODO: check to use the other install
# required for ros deployment, too
install (
FILES
"${PROJECT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/libpointmatcherConfig.cmake"
"${PROJECT_BINARY_DIR}/libpointmatcherConfigVersion.cmake"
DESTINATION "share/${PROJECT_NAME}/cmake/"
)
#Handle pkg-config file
set(LIBRARY_CC_ARGS "")
foreach(_LIB IN LISTS POINTMATCHER_LIB EXTERNAL_LIBS)
get_filename_component(_FILE_NAME ${_LIB} NAME)
if(${_FILE_NAME} STREQUAL ${_LIB}) # not an absolute path
set(LIBRARY_CC_ARGS "${LIBRARY_CC_ARGS} -l${_LIB}")
else()
set(LIBRARY_CC_ARGS "${LIBRARY_CC_ARGS} ${_LIB}")
endif()
endforeach()
unset(_LIB)
unset(_FILE_NAME)
configure_file(pointmatcher.pc.in libpointmatcher.pc @ONLY)
configure_file(pointmatcher.pc.in pointmatcher.pc @ONLY) # for backward compatibility
install(FILES
${CMAKE_BINARY_DIR}/libpointmatcher.pc
${CMAKE_BINARY_DIR}/pointmatcher.pc # for backward compatibility
DESTINATION lib/pkgconfig
)
unset(LIBRARY_CC_ARGS)
#====================== uninstall target ===============================
if (NOT TARGET uninstall)
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in"
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
IMMEDIATE @ONLY)
add_custom_target(uninstall
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
endif()