summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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