diff options
| author | 2014-12-28 02:46:29 -0200 | |
|---|---|---|
| committer | 2014-12-29 02:08:10 -0200 | |
| commit | da049764377804f055ff1898ba0e58c8ee096805 (patch) | |
| tree | 11af94084d6dde8d968d5c191161b9e1b954cd63 | |
| parent | Clipper: Avoid dynamic allocations (diff) | |
| download | yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.gz yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.xz yuzu-da049764377804f055ff1898ba0e58c8ee096805.zip | |
CMake: Require Boost 1.57.0 (fixes Travis OS X)
| -rw-r--r-- | CMakeLists.txt | 4 |
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.") |
| 42 | endif() | 42 | endif() |
| 43 | 43 | ||
| 44 | find_package(Boost) | 44 | find_package(Boost 1.57.0) |
| 45 | if (Boost_FOUND) | 45 | if (Boost_FOUND) |
| 46 | include_directories(${Boost_INCLUDE_DIRS}) | 46 | include_directories(${Boost_INCLUDE_DIRS}) |
| 47 | else() | 47 | else() |
| 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) |
| 50 | endif() | 50 | endif() |
| 51 | 51 | ||