Commit f8c87340 authored by Patrik Huber's avatar Patrik Huber

Adding a simple .travis.yml that builds with gcc-5

parent 1857d567
sudo: required
dist: trusty
language: cpp
env:
- C_COMPILER=gcc-5 CXX_COMPILER=g++-5
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -q
- sudo apt-get install gcc-5 g++-5 -y
- sudo apt-get install libboost-all-dev libeigen3-dev libopencv-dev -y
before_script:
- mkdir build
- cd build
- cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${CXX_COMPILER} -DBUILD_EXAMPLES=on -DBUILD_UTILS=on ..
script:
- make VERBOSE=1
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment