aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: a5bbe817cde80154d66efbc7cd9e09353e5a2351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language:
 - c++
 - java

# Travis is still stuck on Ubuntu 14.04, which has a too old FLTK
before_install:
 - wget http://fltk.org/pub/fltk/1.3.4/fltk-1.3.4-2-source.tar.gz
 - tar -xvf fltk-1.3.4-2-source.tar.gz
 - pushd fltk-1.3.4-2
 - ./configure --prefix=/usr --enable-shared
 - make -j2
 - sudo make install
 - popd

script:
 - cmake . && make
 - cd java && cmake . && make