diff --git a/README.md b/README.md index cf441e9..362e9c8 100644 --- a/README.md +++ b/README.md @@ -26,20 +26,23 @@ 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/) * cmake * make * clang or gcc (compiler) ## Installation ## +See [installation guide](http://github.com/cppit/jucipp/blob/master/docs/install.md). -```sh -$ cmake . -$ make -``` -## Run -```sh -$ ./bin/juci -``` diff --git a/docs/install.md b/docs/install.md new file mode 100644 index 0000000..2713a3f --- /dev/null +++ b/docs/install.md @@ -0,0 +1,27 @@ +# juCi++ +## Installation guide ## +## Linux +```sh +# 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 +# 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 +```