diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-28 05:46:29 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-29 05:08:10 +0100 |
commit | da049764377804f055ff1898ba0e58c8ee096805 (patch) | |
tree | 11af94084d6dde8d968d5c191161b9e1b954cd63 /CMakeLists.txt | |
parent | Clipper: Avoid dynamic allocations (diff) | |
download | yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.gz yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.bz2 yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.lz yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.xz yuzu-da049764377804f055ff1898ba0e58c8ee096805.tar.zst yuzu-da049764377804f055ff1898ba0e58c8ee096805.zip |
Diffstat (limited to 'CMakeLists.txt')
-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() message(STATUS "libpng not found. Some debugging features have been disabled.") endif() -find_package(Boost) +find_package(Boost 1.57.0) if (Boost_FOUND) include_directories(${Boost_INCLUDE_DIRS}) else() - message(STATUS "Boost not found, falling back to externals") + message(STATUS "Boost 1.57.0 or newer not found, falling back to externals") include_directories(externals/boost) endif() |