Skip to content
Snippets Groups Projects
Commit 6c5c5be1 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

CMake: improve status messages

parent df15b8f8
No related branches found
No related tags found
No related merge requests found
Pipeline #33006 passed
...@@ -138,10 +138,10 @@ if(octomap_FOUND) ...@@ -138,10 +138,10 @@ if(octomap_FOUND)
list(GET VERSION_LIST 0 OCTOMAP_MAJOR_VERSION) list(GET VERSION_LIST 0 OCTOMAP_MAJOR_VERSION)
list(GET VERSION_LIST 1 OCTOMAP_MINOR_VERSION) list(GET VERSION_LIST 1 OCTOMAP_MINOR_VERSION)
list(GET VERSION_LIST 2 OCTOMAP_PATCH_VERSION) list(GET VERSION_LIST 2 OCTOMAP_PATCH_VERSION)
message(STATUS "FCL uses Octomap") message(STATUS "HPP-FCL uses Octomap")
else() else()
SET(HPP_FCL_HAS_OCTOMAP FALSE) SET(HPP_FCL_HAS_OCTOMAP FALSE)
message(STATUS "FCL does not use Octomap") message(STATUS "HPP-FCL does not use Octomap")
endif() endif()
option(HPP_FCL_HAS_QHULL "use qhull library to compute convex hulls." FALSE) option(HPP_FCL_HAS_QHULL "use qhull library to compute convex hulls." FALSE)
...@@ -149,6 +149,7 @@ if(HPP_FCL_HAS_QHULL) ...@@ -149,6 +149,7 @@ if(HPP_FCL_HAS_QHULL)
find_package(Qhull COMPONENTS qhull_r qhullcpp) find_package(Qhull COMPONENTS qhull_r qhullcpp)
if(Qhull_FOUND) if(Qhull_FOUND)
set(HPP_FCL_USE_SYSTEM_QHULL TRUE) set(HPP_FCL_USE_SYSTEM_QHULL TRUE)
message(STATUS "HPP-FCL uses system Qhull")
else() else()
message(STATUS "Qhullcpp not found: it will be build from sources, if Qhull_r is found") message(STATUS "Qhullcpp not found: it will be build from sources, if Qhull_r is found")
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/third-parties) file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/third-parties)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment