fix for Undefined symbols for architecture x86_64: "Nabo::NearestNeighbourSearch (#1117)

related to https://github.com/ethz-asl/libpointmatcher/issues/514
employ fix from https://github.com/ethz-asl/libpointmatcher/pull/513
This commit is contained in:
cdb0y511
2023-08-27 13:36:49 -07:00
committed by GitHub
parent 20ad6cca2c
commit 6a5b844bac
2 changed files with 4 additions and 0 deletions
+3
View File
@@ -519,6 +519,9 @@ IF(WITH_POINTMATCHER)
find_package(libpointmatcher QUIET)
IF(libpointmatcher_FOUND)
MESSAGE(STATUS "Found libpointmatcher: ${libpointmatcher_INCLUDE_DIRS}")
# Find libnabo:
find_package(libnabo REQUIRED PATHS ${LIBNABO_INSTALL_DIR})
message(STATUS "libnabo found, version ${libnabo_VERSION} (Config mode)")
ENDIF(libpointmatcher_FOUND)
ENDIF(WITH_POINTMATCHER)
+1
View File
@@ -457,6 +457,7 @@ IF(libpointmatcher_FOUND)
SET(LIBRARIES
${LIBRARIES}
${libpointmatcher_LIBRARIES}
libnabo::nabo
)
ENDIF(libpointmatcher_FOUND)