From 8bdb3e953d71ba9de83ecad185f34b1a5956a89e Mon Sep 17 00:00:00 2001 From: rbock Date: Sat, 31 Jan 2015 16:47:59 +0100 Subject: [PATCH] boost-1.50 is required, trying to figure out which versions are available at travis Might have to install headers manually --- .travis.yml | 2 +- examples/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7d79758f..dbaf7c45 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ notifications: before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update - - sudo apt-get install libboost-dev + - sudo apt-cache search libboost - if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 6f386544..4db91ca9 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -11,7 +11,7 @@ build(insert) build(update) build(remove) build(select) -find_package(Boost 1.46) +find_package(Boost 1.50) if(Boost_FOUND) MESSAGE(${Boost_INCLUDE_DIRS}) include_directories(${Boost_INCLUDE_DIRS})