From 6749ad0ea26b9335af0dab1dc795f36e1f209547 Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Fri, 21 Aug 2015 12:21:50 +0200 Subject: [PATCH] Added Windows with Cygwin install documentation Not completely tested due to Windows update madness --- docs/install.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index 1d984a0..0178767 100644 --- a/docs/install.md +++ b/docs/install.md @@ -2,7 +2,7 @@ ## Debian/Ubuntu ```sh -sudo apt-get install libclang-dev make cmake g++ git +sudo apt-get install git cmake make g++ libclang-dev ``` ```sh @@ -25,3 +25,22 @@ cmake . make 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 +```