Browse Source

Merge branch 'readme' of github.com:cppit/jucipp into makeinstall

merge-requests/365/head
Jørgen Lien Sellæg 11 years ago
parent
commit
c065028bc8
  1. 21
      README.md
  2. 27
      docs/install.md

21
README.md

@ -26,20 +26,23 @@ Configuration description will arrive shortly after source code is added.
## Dependencies ## ## Dependencies ##
Please install these dependencies on your system. 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/) * [libclangmm](http://github.com/cppit/libclangmm/)
* cmake * cmake
* make * make
* clang or gcc (compiler) * clang or gcc (compiler)
## Installation ## ## Installation ##
See [installation guide](http://github.com/cppit/jucipp/blob/master/docs/install.md).
```sh
$ cmake .
$ make
```
## Run
```sh
$ ./bin/juci
```

27
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
```
Loading…
Cancel
Save