From 4d0e4a4e43e962e91dca076bcd2cd9c0d987f6b0 Mon Sep 17 00:00:00 2001 From: Geir Morten Larsen Date: Mon, 13 Jul 2015 19:02:28 +0200 Subject: [PATCH 1/4] CHANGE: updated libraries needed to run cmake . --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index cf441e9..0699904 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,9 @@ Please install these dependencies on your system. * libclang * [libclangmm](http://github.com/cppit/libclangmm/) +* boost +* gtkmm +* gtksourceview * cmake * make * clang or gcc (compiler) From fd49094e4896fdfd18189191e1d386ca6a6394ca Mon Sep 17 00:00:00 2001 From: Geir Morten Larsen Date: Tue, 14 Jul 2015 21:46:30 +0200 Subject: [PATCH 2/4] Change: added libraries and installation guide Added libraries that after comment on last commmit, and added an installation guide for linux. Did also change compile guide. --- README.md | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0699904..75603e2 100644 --- a/README.md +++ b/README.md @@ -26,18 +26,40 @@ Configuration description will arrive shortly after source code is added. ## Dependencies ## Please install these dependencies on your system. -* libclang +* libboost-python-dev +* libboost-filesystem-dev +* libboost-log-dev +* libboost-test-dev +* libboost-thread-dev +* libboost-system-dev +* libgtkmm-3.0-dev +* libgtksourceview2.0-dev +* libgtksourceviewmm-3.0-dev +* libpython-dev +* libclang-dev * [libclangmm](http://github.com/cppit/libclangmm/) -* boost -* gtkmm -* gtksourceview * cmake * make * clang or gcc (compiler) ## Installation ## +**Linux** +```sh +# Libraries (missing libclangmm, see http://github.com/cppit/libclangmm/ for installation) +$ sudo apt-get install libboost-python-dev libboost-filesystem-dev libboost-log-dev libboost-test-dev +libboost-thread-dev libboost-system-dev libgtkmm-3.0-dev libgtksourceview2.0-dev libgtksourceviewmm-3.0-dev +libpython-dev libclang-dev +# Programs +$sudo apt-get install make cmake gcc +``` +Compile ```sh +# When git clone +$ cd path-to-cloned-from-folder/jucipp/juci +# When download zipped file, extraxt it to a folder of your choice +$ cd path-to-folder-extraxted-into/jucipp-master/juci +# In both cases above you can choose remove the jucipp folder, but remeber to apply changes to cd command as well. $ cmake . $ make ``` From 2a521d4a873aae7843dc44bf37382360d5a428e5 Mon Sep 17 00:00:00 2001 From: Geir Morten Larsen Date: Wed, 15 Jul 2015 19:37:15 +0200 Subject: [PATCH 3/4] Added docs/install.md --- README.md | 24 +----------------------- docs/install.md | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 23 deletions(-) create mode 100644 docs/install.md diff --git a/README.md b/README.md index 75603e2..9f82537 100644 --- a/README.md +++ b/README.md @@ -43,28 +43,6 @@ Please install these dependencies on your system. * clang or gcc (compiler) ## Installation ## -**Linux** -```sh -# Libraries (missing libclangmm, see http://github.com/cppit/libclangmm/ for installation) -$ sudo apt-get install libboost-python-dev libboost-filesystem-dev libboost-log-dev libboost-test-dev -libboost-thread-dev libboost-system-dev libgtkmm-3.0-dev libgtksourceview2.0-dev libgtksourceviewmm-3.0-dev -libpython-dev libclang-dev -# Programs -$sudo apt-get install make cmake gcc +See installation guide [docs/install.md](http://github.com/cppit/jucipp/blob/master/docs/install.md). -``` -Compile -```sh -# When git clone -$ cd path-to-cloned-from-folder/jucipp/juci -# When download zipped file, extraxt it to a folder of your choice -$ cd path-to-folder-extraxted-into/jucipp-master/juci -# In both cases above you can choose remove the jucipp folder, but remeber to apply changes to cd command as well. -$ cmake . -$ make -``` -## Run -```sh -$ ./bin/juci -``` diff --git a/docs/install.md b/docs/install.md new file mode 100644 index 0000000..9af5fa0 --- /dev/null +++ b/docs/install.md @@ -0,0 +1,27 @@ +# juCi++ +## Installation guide ## +## Linux +```sh +# Libraries (missing libclangmm, see http://github.com/cppit/libclangmm/ for installation) +$ sudo apt-get install libboost-python-dev libboost-filesystem-dev libboost-log-dev libboost-test-dev +libboost-thread-dev libboost-system-dev libgtkmm-3.0-dev libgtksourceview2.0-dev libgtksourceviewmm-3.0-dev +libpython-dev libclang-dev +# Programs +$sudo apt-get install make cmake gcc + +``` +Compile +```sh +# When git clone +$ cd path-to-cloned-from-folder/jucipp/juci +# When download zipped file, extraxt it to a folder of your choice +$ cd path-to-folder-extraxted-into/jucipp-master/juci +# In both cases above you can choose remove the jucipp folder, but remeber to apply changes to cd command as well. +$ cmake . +$ make +``` + +## Run +```sh +$ ./bin/juci +``` From 4626bc910fade126eeb957e8e9decc15d95c5e03 Mon Sep 17 00:00:00 2001 From: Geir Morten Larsen Date: Wed, 22 Jul 2015 17:39:42 +0200 Subject: [PATCH 4/4] changing link names to installtion guides --- README.md | 2 +- docs/install.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f82537..362e9c8 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,6 @@ Please install these dependencies on your system. * clang or gcc (compiler) ## Installation ## -See installation guide [docs/install.md](http://github.com/cppit/jucipp/blob/master/docs/install.md). +See [installation guide](http://github.com/cppit/jucipp/blob/master/docs/install.md). diff --git a/docs/install.md b/docs/install.md index 9af5fa0..2713a3f 100644 --- a/docs/install.md +++ b/docs/install.md @@ -2,7 +2,7 @@ ## Installation guide ## ## Linux ```sh -# Libraries (missing libclangmm, see http://github.com/cppit/libclangmm/ for installation) +# Libraries (missing libclangmm, see [installation guide](http://github.com/cppit/libclangmm/blob/master/docs/install.md) for installation) $ sudo apt-get install libboost-python-dev libboost-filesystem-dev libboost-log-dev libboost-test-dev libboost-thread-dev libboost-system-dev libgtkmm-3.0-dev libgtksourceview2.0-dev libgtksourceviewmm-3.0-dev libpython-dev libclang-dev