mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
635 B
23 lines
635 B
|
11 years ago
|
# juCi++
|
||
|
|
## Installation guide ##
|
||
|
|
Before installation, please install libclangmm see [installation guide](http://github.com/cppit/libclangmm/blob/master/docs/install.md) for installation.
|
||
|
|
## Debian
|
||
|
|
First dependencies:
|
||
|
|
```sh
|
||
|
|
$ 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 make cmake gcc
|
||
|
|
```
|
||
|
|
Install the project:
|
||
|
|
```sh
|
||
|
|
$ git clone http://github.com/cppit/jucipp.git juci
|
||
|
|
$ cd juci
|
||
|
|
$ cmake .
|
||
|
|
$ make
|
||
|
|
$ sudo make install
|
||
|
|
```
|
||
|
|
## Run
|
||
|
|
```sh
|
||
|
|
$ juci
|
||
|
|
```
|