Skip to content

Commit 92040bc

Browse files
committed
[f] cert version
1 parent d5fc3fa commit 92040bc

611 files changed

Lines changed: 30079 additions & 1722 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CMakeLists.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,17 +72,31 @@ if (OPENMP_FOUND)
7272
endif ()
7373

7474

75-
configure_file(pmc/pmc.CMakeLists.txt.in pmc-download/CMakeLists.txt)
75+
configure_file(cmake/pmc.CMakeLists.txt.in pmc-download/CMakeLists.txt)
7676
execute_process(COMMAND "${CMAKE_COMMAND}" -G "${CMAKE_GENERATOR}" .
7777
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/pmc-download")
7878
execute_process(COMMAND "${CMAKE_COMMAND}" --build .
7979
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/pmc-download")
8080
add_subdirectory("${CMAKE_BINARY_DIR}/pmc-src" #CMAKE_BINARY_DIR =>
8181
"${CMAKE_BINARY_DIR}/pmc-build")
8282

83+
# spectra
84+
configure_file(cmake/spectra.CMakeLists.txt.in spectra-download/CMakeLists.txt)
85+
execute_process(COMMAND "${CMAKE_COMMAND}" -G "${CMAKE_GENERATOR}" .
86+
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/spectra-download")
87+
execute_process(COMMAND "${CMAKE_COMMAND}" --build .
88+
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/spectra-download")
89+
add_subdirectory("${CMAKE_BINARY_DIR}/spectra-src" # CMAKE_BINARY_DIR =>
90+
"${CMAKE_BINARY_DIR}/spectra-build")
91+
set(SPECTRA_INCLUDE_DIRS "${CMAKE_BINARY_DIR}/spectra-src/include")
92+
93+
include_directories(${SPECTRA_INCLUDE_DIRS})
94+
# install(DIRECTORY ${SPECTRA_INCLUDE_DIRS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
95+
8396
####### Executable #######
8497
set(teaser_src
8598
src/registration.cc
99+
src/certification.cc
86100
src/graph.cc
87101
src/teaser_utils/feature_matcher.cc
88102
src/teaser_utils/fpfh.cc

build/CATKIN_IGNORE

Whitespace-only changes.

0 commit comments

Comments
 (0)