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