This commit is contained in:
Tatsuhiko Kubo
2016-03-19 18:18:05 +09:00
commit a38d72a9de
70 changed files with 4508 additions and 0 deletions

16
.travis.yml Normal file
View File

@@ -0,0 +1,16 @@
language: cpp
compiler:
- gcc
- clang
before_script:
- wget http://googletest.googlecode.com/files/gtest-1.7.0.zip
- unzip -q gtest-1.7.0.zip
- cd gtest-1.7.0
- ./configure
- make
- cd ..
script:
- cd examples
- scons
- cd ../test
- GTEST_ROOT=$PWD/../gtest-1.7.0 scons check