/enki-ng

Primary LanguageC++

Enki Editor (next generation)

Work in progress. Previous generation is more usable now.

Build dependencies

  1. Install g++
  2. Install cmake
  3. Install Qt5 development files.
  4. Install Qutepart C++ version

On Ubuntu and Ubuntu-based systems

    sudo apt-get install g++ cmake qt5base-dev qtbase5-dev-tools

Building

Prepare build directory

    mkdir build
    cd build

Configure

To use Qutepart installed to the system:

    cmake ..

It is also possible to build Enki with Qutepart checked out as source tree. This variant usually is used for development:

    cmake .. -DQUTEPART_SRC_DIR=../../qutepart-cpp/

Replace ../../qutepart-cpp with your Qutepart source directory path relative to current directory.

Build

    make

To run from the sources

    ./enki-ng

(From the build directory, after enki-ng was built)

To install to the system

    sudo make install