SQLiteCpp/.travis.yml
Sébastien Rombauts 1af6930fc7 Added a cppcheck rule to the "all" target
- Travis: apt-get install cppcheck
2013-10-24 07:06:35 +02:00

20 lines
339 B
YAML

language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq cppcheck
# 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