From ee70421f64ea8f105db4b8353c6c6e41d24364bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Math=C3=A4us=20Mendel?= Date: Sat, 15 Dec 2012 23:59:57 -0200 Subject: [PATCH] Added Travis CI configuration file Travis CI is a free continuous integration service that allows open source projects to check the integrity of their source code by building it after every commit made to the repository. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..cf06db101 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: cpp +compiler: + - gcc + - clang +script: cmake . \ No newline at end of file