We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63c716 commit 9f108dcCopy full SHA for 9f108dc
CMakeLists.txt
@@ -102,14 +102,14 @@ message("***********************")
102
message("point cloud library pkg")
103
message("***********************")
104
105
-find_package(PCL 1.8 PATHS ${PCL_DIR})
+find_package(PCL 1.8 PATHS ${PCL_DIR} QUIET)
106
if(PCL_FOUND)
107
message(STATUS "PCL status:")
108
message(STATUS " version: ${PCL_VERSION}")
109
#message(STATUS " pcl directorie: ${PCL_INCLUDE_DIRS}")
110
else()
111
message(WARNING " PCL 1.8 not found, attempting 1.7...")
112
- find_package(PCL 1.7 REQUIRED)
+ find_package(PCL 1.7 REQUIRED QUIET)
113
114
115
0 commit comments