CMake: Don't complain when Boost isn't found in the system.

This commit is contained in:
Yuri Kunde Schlesner 2015-08-28 16:59:25 -03:00
parent 2eec2c156b
commit fdb0f8203e

View file

@ -115,7 +115,7 @@ else()
message(STATUS "libpng not found. Some debugging features have been disabled.")
endif()
find_package(Boost 1.57.0)
find_package(Boost 1.57.0 QUIET)
if (Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
else()