Skip to content

Commit

Permalink
Update third-party library names and versions in CMakeLists.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
SaillantNicolas committed Jul 10, 2024
1 parent b0f0f10 commit d8451ec
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 4 deletions.
55 changes: 52 additions & 3 deletions Installation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -482,14 +482,63 @@ endif()

find_package(TBB QUIET)
if(TBB_FOUND)
message(STATUS "Third-parties libraries TBB ${TBB_VERSION}")
message(STATUS "Third-party library TBB ${TBB_VERSION}")
endif()
find_package(Eigen3 QUIET)
if(Eigen3_FOUND)
message(STATUS "Third-parties libraries Eigen3 ${EIGEN3_VERSION}")
message(STATUS "Third-party library Eigen3 ${EIGEN3_VERSION}")
endif()

find_package(GMP QUIET)
if(GMP_FOUND)
message(STATUS "Third-party library GMP ${GMP_VERSION}")
endif()

find_package(MPFR QUIET)
if(MPFR_FOUND)
message(STATUS "Third-party library MPFR ${MPFR_VERSION}")
endif()

find_package(OpenGR QUIET)
if(OpenGR_FOUND)
message(STATUS "Third-party library OpenGR found")
endif()

find_package(libpointmatcher QUIET)
if(libpointmatcher_FOUND)
message(STATUS "Third-party library libpointmatcher found")
endif()

find_package(LEDA QUIET)
if(LEDA_FOUND)
message(STATUS "Third-party library LEDA found")
endif()
message("== Generate version files (DONE) ==\n")

find_package(MPFI QUIET)
if(MPFI_FOUND)
message(STATUS "Third-party library MPFI found")
endif()

find_package(NTL QUIET)
if(NTL_FOUND)
message(STATUS "Third-party library NTL found")
endif()

find_package(OpenCV QUIET)
if(OpenCV_FOUND)
message(STATUS "Third-party library OpenCV ${OpenCV_VERSION}")
endif()

find_package(METIS QUIET)
if(METIS_FOUND)
message(STATUS "Third-party library METIS found")
endif()

find_package(ZLIB QUIET)
if(ZLIB_FOUND)
message(STATUS "Third-party library zlib ${ZLIB_VERSION_STRING}")
endif()
message("== Generate version files (DONE) ==\n")
#--------------------------------------------------------------------------------------------------
#
# -= External libraries =-
Expand Down
2 changes: 1 addition & 1 deletion Maintenance/test_handling/to_zipped_format
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ sub reformat_results($)
# print PLATFORM_NEW_RESULTS $_;
# last;
# }
if (/^-- Third-parties libraries ([\w\.]+ [\w\.\_\-]*)/) {
if (/^-- Third-party library ([\w\.]+ [\w\.\_\-]*)/) {
$TPL = "$TPL $1,";
}
NEXT: if(! ($_= <PLATFORM_RESULTS>)) {
Expand Down

0 comments on commit d8451ec

Please sign in to comment.