summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: b6976ba7e36cb4a66ddf2515e0f0060cedda41bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: cpp
compiler:
  - gcc
before_install:
    - sudo apt-get update -qq
    - sudo apt-get install -qq  texlive texlive-extra-utils texlive-latex-extra libxml2-utils
    - wget -qO- http://www.cmake.org/files/v3.1/cmake-3.1.0-Linux-x86_64.tar.gz | tar xvz

script:
    - mkdir build
    - cd build
    - ../cmake-3.1.0-Linux-x86_64/bin/cmake -G "Unix Makefiles" -Dbuild_doc=ON -Dbuild_wizard=ON ..
    - make
    - make docs
    - make tests