mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-08 23:27:54 +00:00
CMake: Don't complain when Boost isn't found in the system.
This commit is contained in:
parent
9d2892aec1
commit
3351ac9afb
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue