Add .travis.yml for continuous integration

This commit is contained in:
Steven Peters 2014-05-20 10:54:43 -07:00
parent f213b00022
commit 010d5cbc2b

13
.travis.yml Normal file
View File

@ -0,0 +1,13 @@
language: cpp
compiler:
- gcc
- clang
install:
- sudo apt-get update
- sudo apt-get install libglew-dev
script:
- echo "CXX="$CXX
- echo "CC="$CC
- cmake . -G "Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror
- make -j8
- sudo make install