Skip to content

Commit

Permalink
Merge pull request #2620 from SergioRAgostinho/opt-deps-cmake-warnings
Browse files Browse the repository at this point in the history
Downgrade grabber dependency message level to STATUS.
  • Loading branch information
taketwo authored Nov 15, 2018
2 parents d0b92fa + 0f98ab0 commit 9073f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/pcl_targets.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ macro(PCL_ADD_GRABBER_DEPENDENCY _name _description)
find_package(${_name})
if (NOT ${_name_capitalized}_FOUND)
set(WITH_${_name_capitalized} FALSE CACHE BOOL "${_description}" FORCE)
message(WARNING "${_description}: not building because ${_name} not found")
message(STATUS "${_description}: not building because ${_name} not found")
else()
set(HAVE_${_name_capitalized} TRUE)
include_directories(SYSTEM "${${_name_capitalized}_INCLUDE_DIRS}")
Expand Down

0 comments on commit 9073f63

Please sign in to comment.