CMake 3.0 for travis by hand

This commit is contained in:
Daniel Sipka 2015-09-30 16:44:41 +02:00
parent 89dc198813
commit c088e9225e

View File

@ -9,9 +9,14 @@ env:
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:boost-latest/ppa -y
- sudo add-apt-repository ppa:george-edison55/precise-backports -y
- sudo apt-get update -qq
- sudo apt-get install -qq cmake libboost1.54-dev libboost-program-options1.54-dev ${COMPILER}
- sudo apt-get install -qq libboost1.54-dev libboost-program-options1.54-dev build-essential ${COMPILER}
- wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz
- tar xf cmake-3.2.2.tar.gz
- cd cmake-3.2.2
- ./configure
- make
- sudo make install
before_script:
- export CXX=${COMPILER}