From 8a3c5c11aba5c4d3cc13f5fb01a6ffe12bf06155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Wed, 7 Dec 2016 00:52:13 +0100 Subject: [PATCH] Add CI-badge --- README.md | 4 +++- ci/compile.sh | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index decb47a..7f3b2d4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# libclangmm - an easy-to-use C++ wrapper for libclang # +# libclangmm [![Build Status](https://travis-ci.org/cppit/libclangmm.svg?branch=master)](https://travis-ci.org/cppit/libclangmm) [![Build status](https://ci.appveyor.com/api/projects/status/bqcva8fovxu31yp3/branch/master?svg=true)](https://ci.appveyor.com/project/zalox/libclangmm/branch/master) + +###### an easy-to-use C++ wrapper for libclang ## About ## Provides C++ bindings and class structure to the [libclang](http://www.llvm.org) C library. diff --git a/ci/compile.sh b/ci/compile.sh index 84c8040..451bdcd 100755 --- a/ci/compile.sh +++ b/ci/compile.sh @@ -7,10 +7,10 @@ if [ "${cmake_command}" == "" ]; then else mingw="mingw32" fi - cmake_command="cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/${mingw} -DENABLE_TESTING=1 .." + cmake_command="cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/${mingw} -LIBCLANGMM_BUILD_TESTS=ON .." make_command="make" else - cmake_command="cmake -DENABLE_TESTING=1 .." + cmake_command="cmake -LIBCLANGMM_BUILD_TESTS=ON .." fi fi