Browse Source

Added Windows with Cygwin install documentation

Not completely tested due to Windows update madness
merge-requests/37/head
Ole Christian Eidheim 10 years ago
parent
commit
6749ad0ea2
  1. 21
      docs/install.md

21
docs/install.md

@ -2,7 +2,7 @@
## Debian/Ubuntu ## Debian/Ubuntu
```sh ```sh
sudo apt-get install libclang-dev make cmake g++ git sudo apt-get install git cmake make g++ libclang-dev
``` ```
```sh ```sh
@ -25,3 +25,22 @@ cmake .
make make
make install make install
``` ```
## Windows with Cygwin (https://www.cygwin.com/)
Install https://github.com/transcode-open/apt-cyg:
```sh
lynx -source rawgit.com/transcode-open/apt-cyg/master/apt-cyg > apt-cyg
install apt-cyg /bin
```
```sh
apt-cyg install git cmake make gcc-g++ libclang
```
```sh
git clone https://github.com/cppit/libclangmm.git
cd libclangmm
cmake .
make
make install
```

Loading…
Cancel
Save