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.

49 lines
1.4 KiB

11 years ago
# juCi++
###### a lightweight C++-IDE with support for C++11 and C++14.
## About
11 years ago
juCi++ is a lightweight C++-IDE written in C++. You can write plugins
in Python and configure the IDE from the config.json file.
11 years ago
11 years ago
## Autocompletion
The IDE supports autocompletion on accessor specifiers such as dot and arrow. The autocompletion has excellent support for C++11/14.
11 years ago
## Syntax Highlighting
11 years ago
The IDE also supports syntax highligthing even in C++11 and C++14.
11 years ago
11 years ago
## To get C++11 and C++14 support
If you want support for external libraries and C++11 and C++14 you need to make sure you add a parameter to the cmake command. This will make compile_commands.json wich tells juCi++ all the paramters for the compiler. There is a bug where juCi++ sometimes puts the compile_commands.json file in the incorrect folder. Please make sure this file exists and that the contents of it covers all your files.
```sh
$ cmake . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
```
11 years ago
## Plugins
11 years ago
There are expansion oppertunities with usage of python plugins.
11 years ago
## Configuration
Configuration description will arrive shortly after source code is added.
11 years ago
## Dependencies ##
Please install these dependencies on your system.
* libclang
* [libclangmm](http://github.com/cppit/libclangmm/)
* boost
* gtkmm
* gtksourceview
11 years ago
* cmake
* make
* clang or gcc (compiler)
## Installation ##
```sh
$ cmake .
$ make
```
## Run
```sh
$ ./bin/juci
```