Skip to content

Commit 6c5c5be

Browse files
committed
CMake: improve status messages
1 parent df15b8f commit 6c5c5be

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CMakeLists.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -138,17 +138,18 @@ if(octomap_FOUND)
138138
list(GET VERSION_LIST 0 OCTOMAP_MAJOR_VERSION)
139139
list(GET VERSION_LIST 1 OCTOMAP_MINOR_VERSION)
140140
list(GET VERSION_LIST 2 OCTOMAP_PATCH_VERSION)
141-
message(STATUS "FCL uses Octomap")
141+
message(STATUS "HPP-FCL uses Octomap")
142142
else()
143143
SET(HPP_FCL_HAS_OCTOMAP FALSE)
144-
message(STATUS "FCL does not use Octomap")
144+
message(STATUS "HPP-FCL does not use Octomap")
145145
endif()
146146

147147
option(HPP_FCL_HAS_QHULL "use qhull library to compute convex hulls." FALSE)
148148
if(HPP_FCL_HAS_QHULL)
149149
find_package(Qhull COMPONENTS qhull_r qhullcpp)
150150
if(Qhull_FOUND)
151151
set(HPP_FCL_USE_SYSTEM_QHULL TRUE)
152+
message(STATUS "HPP-FCL uses system Qhull")
152153
else()
153154
message(STATUS "Qhullcpp not found: it will be build from sources, if Qhull_r is found")
154155
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/third-parties)

0 commit comments

Comments
 (0)