Browse Source

Cleanup and added OS X instructions

merge-requests/37/head
Ole Christian Eidheim 10 years ago
parent
commit
52edfa4e57
  1. 28
      docs/install.md

28
docs/install.md

@ -1,13 +1,27 @@
# Installation guide # # Installation guide #
## Debian/Ubuntu ## Debian/Ubuntu
```sh ```
$ sudo apt-get install libclang-dev make cmake gcc g++ git sudo apt-get install libclang-dev make cmake g++ git
```
```
git clone https://github.com/cppit/libclangmm.git
cd libclangmm
cmake .
make
sudo make install
``` ```
```sh ## OS X with Homebrew (http://brew.sh/)
$ git clone https://github.com/cppit/libclangmm.git clangmm ```
$ cd clangmm brew install cmake --with-clang llvm
$ make ```
$ sudo make install
```
git clone https://github.com/cppit/libclangmm.git
cd libclangmm
cmake .
make
make install
``` ```

Loading…
Cancel
Save