change boost minimum version to work with travis

This commit is contained in:
Thom Troy 2015-12-01 13:48:14 +00:00
parent 6d13f2e2fd
commit 1dd45273a1
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ project (third_party_include)
# find a boost install with the libraries filesystem and system
find_package(Boost 1.54.0 REQUIRED COMPONENTS filesystem system)
find_package(Boost 1.46.1 REQUIRED COMPONENTS filesystem system)
# check if boost was found
if(Boost_FOUND)

View File

@ -50,7 +50,7 @@ find_package(Boost 1.54.0 REQUIRED COMPONENTS filesystem system)
The arguments are:
* Boost - Name of the library. This is part of used to find the module file FindBoost.cmake
* 1.54.0 - The minimum version of boost to find
* 1.46.1 - The minimum version of boost to find
* REQUIRED - Tells the module that this is required and to fail it it cannot be found
* COMPONENTS - The list of libraries to find.