diff options
| -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 | ||