Skip to content

Commit 9f108dc

Browse files
authored
Update CMakeLists.txt
1 parent a63c716 commit 9f108dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ message("***********************")
102102
message("point cloud library pkg")
103103
message("***********************")
104104

105-
find_package(PCL 1.8 PATHS ${PCL_DIR})
105+
find_package(PCL 1.8 PATHS ${PCL_DIR} QUIET)
106106
if(PCL_FOUND)
107107
message(STATUS "PCL status:")
108108
message(STATUS " version: ${PCL_VERSION}")
109109
#message(STATUS " pcl directorie: ${PCL_INCLUDE_DIRS}")
110110
else()
111111
message(WARNING " PCL 1.8 not found, attempting 1.7...")
112-
find_package(PCL 1.7 REQUIRED)
112+
find_package(PCL 1.7 REQUIRED QUIET)
113113
if(PCL_FOUND)
114114
message(STATUS "PCL status:")
115115
message(STATUS " version: ${PCL_VERSION}")

0 commit comments

Comments
 (0)