Browse Source

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

pull/15/merge
Yuri Kunde Schlesner 10 years ago
parent
commit
fdb0f8203e
  1. 2
      CMakeLists.txt

2
CMakeLists.txt

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

Loading…
Cancel
Save