From fac0d3ff2acb1525acb41948672fc432fb7e144c Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Tue, 25 Aug 2015 13:24:46 +0200 Subject: [PATCH] Update install.md --- docs/install.md | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/docs/install.md b/docs/install.md index 7c2c456..7f92809 100644 --- a/docs/install.md +++ b/docs/install.md @@ -28,10 +28,41 @@ make install ``` ##Windows with MSYS2 (https://msys2.github.io/) -Will be available when the following TODOs are resolved: +Please wait until the following TODOs are resolved: * Newlines are saved properly -* Windows implementation of fork/pipe/read/write +* Windows implementation of creating processes * libclang(mm) finds header-files +* fix make install, and install to mingw[32/64]/bin + +Install dependencies(replace [arch] with i686 or x86_64 depending on your MSYS2 install): +```sh +pacman -S patch autoconf automake-wrapper mingw-w64-[arch]-gtkmm3 mingw-w64-[arch]-boost +``` + +Get juCi++ source: +```sh +git clone https://github.com/cppit/jucipp.git +cd jucipp +``` + +Compiling and installing gtksourceview3 and gtksourceviewmm3: +```sh +cd MINGW-packages/mingw-w64-gtksourceview3/ +makepkg-mingw -sLf +pacman -U mingw-w64-[arch]-gtksourceview3-3.12.0-2-any.pkg.tar.xz +cd ../mingw-w64-gtksourceviewmm3/ +makepkg-mingw -sLf +pacman -U mingw-w64-[arch]-gtksourceviewmm3-3.12.0-1-any.pkg.tar.xz +cd ../../ +``` + +Compile and install juCi++ source: +```sh +cmake -G"MSYS Makefiles" . +make +make install +``` +**You might have to install juci manually** \ No newline at end of file +-->