diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7939f9d3e8268abeea9cf61642ed2314fa7dd289..9a1c88c0e5332f4e4056e18a0e13e7873d3db20f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -138,10 +138,10 @@ if(octomap_FOUND)
   list(GET VERSION_LIST 0 OCTOMAP_MAJOR_VERSION)
   list(GET VERSION_LIST 1 OCTOMAP_MINOR_VERSION)
   list(GET VERSION_LIST 2 OCTOMAP_PATCH_VERSION)
-  message(STATUS "FCL uses Octomap")
+  message(STATUS "HPP-FCL uses Octomap")
 else()
   SET(HPP_FCL_HAS_OCTOMAP FALSE)
-  message(STATUS "FCL does not use Octomap")
+  message(STATUS "HPP-FCL does not use Octomap")
 endif()
 
 option(HPP_FCL_HAS_QHULL "use qhull library to compute convex hulls." FALSE)
@@ -149,6 +149,7 @@ if(HPP_FCL_HAS_QHULL)
   find_package(Qhull COMPONENTS qhull_r qhullcpp)
   if(Qhull_FOUND)
     set(HPP_FCL_USE_SYSTEM_QHULL TRUE)
+    message(STATUS "HPP-FCL uses system Qhull")
   else()
     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)