2015-12-31 18:43:38 -06:00
|
|
|
|
2015-12-31 18:48:13 -06:00
|
|
|
# This makes us use Ubuntu 14 instead of 12
|
2015-12-31 18:43:38 -06:00
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
language: cpp
|
|
|
|
script:
|
|
|
|
- sudo apt-get update
|
|
|
|
- sudo apt-get install libgtk-3-dev -y || sudo apt-cache search libgtk3
|
|
|
|
- make -f GNUmakefile
|
|
|
|
- make -f GNUmakefile example EXAMPLE=histogram
|
|
|
|
|
|
|
|
# Only working things are added here... Some interesting commands would be:
|
|
|
|
# - make -f GNUmakefile examples
|
|
|
|
# - make -f GNUmakefile test
|
|
|
|
#
|
|
|
|
# But they both won't work
|