Add needed packages to travis
This commit is contained in:
parent
cfcec05644
commit
a35e164ede
12
.travis.yml
12
.travis.yml
@ -4,6 +4,18 @@ dist: trusty
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libcrypto++-dev
|
||||
install:
|
||||
- wget -O boost.tar.bz2 https://sourceforge.net/projects/boost/files/boost/1.56.0/boost_1_56_0.tar.bz2/download
|
||||
- tar -xf boost.tar.bz2
|
||||
- cd boost_1_56_0
|
||||
- ./bootstrap.sh --with-libraries=filesystem,thread
|
||||
- sudo ./b2 -d0 install
|
||||
- cd ..
|
||||
- rm -rf boost.tar.bz2 boost_1_56_0
|
||||
script:
|
||||
- mkdir cmake
|
||||
- cd cmake
|
||||
|
@ -39,7 +39,7 @@ endmacro(ENABLE_STYLE_WARNINGS)
|
||||
##################################################
|
||||
function(ADD_BOOST)
|
||||
# Load boost libraries
|
||||
find_package(Boost 1.57.0 #TODO Which min version?
|
||||
find_package(Boost 1.55.0 #TODO Which min version?
|
||||
REQUIRED
|
||||
COMPONENTS ${ARGN})
|
||||
set(Boost_USE_STATIC_LIBS ON)
|
||||
|
Loading…
Reference in New Issue
Block a user