summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2014-12-28 02:46:29 -0200
committerGravatar Yuri Kunde Schlesner2014-12-29 02:08:10 -0200
commitda049764377804f055ff1898ba0e58c8ee096805 (patch)
tree11af94084d6dde8d968d5c191161b9e1b954cd63
parentClipper: Avoid dynamic allocations (diff)
downloadyuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.gz
yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.xz
yuzu-da049764377804f055ff1898ba0e58c8ee096805.zip
CMake: Require Boost 1.57.0 (fixes Travis OS X)
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5bb87d50d..884520cef 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -41,11 +41,11 @@ else()
41 message(STATUS "libpng not found. Some debugging features have been disabled.") 41 message(STATUS "libpng not found. Some debugging features have been disabled.")
42endif() 42endif()
43 43
44find_package(Boost) 44find_package(Boost 1.57.0)
45if (Boost_FOUND) 45if (Boost_FOUND)
46 include_directories(${Boost_INCLUDE_DIRS}) 46 include_directories(${Boost_INCLUDE_DIRS})
47else() 47else()
48 message(STATUS "Boost not found, falling back to externals") 48 message(STATUS "Boost 1.57.0 or newer not found, falling back to externals")
49 include_directories(externals/boost) 49 include_directories(externals/boost)
50endif() 50endif()
51 51