SQLiteCpp/.travis.yml
2013-08-24 19:24:06 +02:00

16 lines
255 B
YAML

language: cpp
compiler:
- gcc
- clang
# using a symbolic link to get the "make test" to work as if launched from the root directorys
before_script:
- mkdir build
- cd build
- cmake ..
- ln -s ../examples examples
script: make && make test