Browse Source

Add CI-badge

merge-requests/37/head
Jørgen Lien Sellæg 9 years ago
parent
commit
8a3c5c11ab
  1. 4
      README.md
  2. 4
      ci/compile.sh

4
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 ## ## About ##
Provides C++ bindings and class structure to the [libclang](http://www.llvm.org) C library. Provides C++ bindings and class structure to the [libclang](http://www.llvm.org) C library.

4
ci/compile.sh

@ -7,10 +7,10 @@ if [ "${cmake_command}" == "" ]; then
else else
mingw="mingw32" mingw="mingw32"
fi 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" make_command="make"
else else
cmake_command="cmake -DENABLE_TESTING=1 .." cmake_command="cmake -LIBCLANGMM_BUILD_TESTS=ON .."
fi fi
fi fi

Loading…
Cancel
Save