blob: 0989c7c852c9c35a2ce37681fadcc3058b10920b [file] [log] [blame]
Dreamer4667f412016-08-01 20:01:18 +04001# Ubuntu 14.04 Trusty support, to get newer cmake and compilers.
2sudo: required
3dist: trusty
4
5language: cpp
6
Andreas Schuh435f9492016-08-02 12:24:34 +01007os:
8 - linux
9 - osx
Dreamer4667f412016-08-01 20:01:18 +040010
11compiler:
12 - clang
13 - gcc
Andreas Schuh435f9492016-08-02 12:24:34 +010014
15env:
16 - CONFIG=Release
17 - CONFIG=Debug
18
19script:
20 - mkdir out && cd out && cmake -D CMAKE_BUILD_TYPE=$CONFIG -D GFLAGS_BUILD_SHARED_LIBS=ON -D GFLAGS_BUILD_STATIC_LIBS=ON -D GFLAGS_BUILD_TESTING=ON .. && cmake --build . --config $CONFIG && ctest