Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cppit/libclangmm
libclangmm - An easy to use C++-wrapper for libclang
https://github.com/cppit/libclangmm
Last synced: 3 months ago
JSON representation
libclangmm - An easy to use C++-wrapper for libclang
- Host: GitHub
- URL: https://github.com/cppit/libclangmm
- Owner: cppit
- License: mit
- Archived: true
- Created: 2015-05-14T11:48:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-11T18:05:02.000Z (over 6 years ago)
- Last Synced: 2024-06-20T11:24:07.873Z (5 months ago)
- Language: C++
- Homepage:
- Size: 211 KB
- Stars: 38
- Watchers: 10
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-clang - libclangmm - C++-wrapper for libclang (developed for [juCi++](https://github.com/cppit/jucipp)) (Libraries / LibClang)
README
**_This project has moved to https://gitlab.com/cppit/libclangmm._**
# libclangmm
###### an easy-to-use C++ wrapper for libclang
## About ##
Provides C++ bindings and class structure to the [libclang](http://www.llvm.org) C library.Developed for [juCi++](https://gitlab.com/cppit/jucipp), a lightweight, platform-independent C++ IDE.
## Dependencies ##
* libclang## Installation ##
See [installation guide](https://gitlab.com/cppit/libclangmm/blob/master/docs/install.md)# Tests #
To run the unit tests:
```sh
mkdir build && cd build
cmake -DBUILD_TESTING=1 ..
make
make test
```