summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-08-28 16:59:25 -0300
committerGravatar Yuri Kunde Schlesner2015-09-08 19:35:13 -0300
commitfdb0f8203eeadff20b748a47aa856869a9906205 (patch)
treebc21382b194a75972d9b31b046a16bc19bf57f5f
parentCMake: Use HINTS option instead of modifying CMAKE_PREFIX_PATH for Qt (diff)
downloadyuzu-fdb0f8203eeadff20b748a47aa856869a9906205.tar.gz
yuzu-fdb0f8203eeadff20b748a47aa856869a9906205.tar.xz
yuzu-fdb0f8203eeadff20b748a47aa856869a9906205.zip
CMake: Don't complain when Boost isn't found in the system.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 81bb9bb17..b619e06fb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -115,7 +115,7 @@ else()
115 message(STATUS "libpng not found. Some debugging features have been disabled.") 115 message(STATUS "libpng not found. Some debugging features have been disabled.")
116endif() 116endif()
117 117
118find_package(Boost 1.57.0) 118find_package(Boost 1.57.0 QUIET)
119if (Boost_FOUND) 119if (Boost_FOUND)
120 include_directories(${Boost_INCLUDE_DIRS}) 120 include_directories(${Boost_INCLUDE_DIRS})
121else() 121else()