1language: cpp
2sudo: required
3dist: trusty
4compiler:
5- g++
6install:
7  - sudo apt-get install libwxgtk2.8-dev libwxgtk2.8-dbg -y
8script:
9  - ./autogen.sh
10  - mkdir $PWD/build
11  - ./configure --prefix=$PWD/build
12  - make -j4
13  - make all install
14  - ls -lt $PWD/build/bin/wxmacmolplt
15  # Error: Unable to initialize gtk, is DISPLAY set properly?
16  # run only in alphanumerical mode
17  - $PWD/build/bin/wxmacmolplt --help
18  - $PWD/build/bin/wxmacmolplt --version
19
20# turn off email notifications
21notifications:
22  email: false
23