From 1dd45273a1067b8644116367d655a0b6e45d1b07 Mon Sep 17 00:00:00 2001 From: Thom Troy Date: Tue, 1 Dec 2015 13:48:14 +0000 Subject: [PATCH] change boost minimum version to work with travis --- 01-basic/H-third-party-library/CMakeLists.txt | 2 +- 01-basic/H-third-party-library/README.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/01-basic/H-third-party-library/CMakeLists.txt b/01-basic/H-third-party-library/CMakeLists.txt index ef8b31a..7d62740 100644 --- a/01-basic/H-third-party-library/CMakeLists.txt +++ b/01-basic/H-third-party-library/CMakeLists.txt @@ -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) diff --git a/01-basic/H-third-party-library/README.adoc b/01-basic/H-third-party-library/README.adoc index 7099736..97b4b91 100644 --- a/01-basic/H-third-party-library/README.adoc +++ b/01-basic/H-third-party-library/README.adoc @@ -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.