Skip to content
Rui Abreu Ferreira edited this page Jun 11, 2015 · 24 revisions

Build Instructions

To build you need Qt5, Neovim and CMake.

System Dependencies
Ubuntu sudo apt-get install qtbase5-dev cmake

The following should work in most Unix systems

mkdir build
cd build
cmake ..
gmake

In Windows you need to call the proper build tool instead of make (e.g. mingw32-make, nmake or vcbuild) you can also use the following

mkdir build
cd build
cmake ..
cmake --build .

Binary Builds

For now we automatically generate binary builds from the staging tag.

System Dependencies
Windows/Zip Generated automatically by Appveyor, download from the releases page
Windows/Chocolatey choco install -pre neovim-qt -source https://www.myget.org/F/equalsraf/
OpenSUSE OBS packages

Continuous Integration

Semaphore CI builds for Linux and MinGW Build Status

Appveyor builds for Windows/MSVC Build status

Coveralls Coverage Status generates coverage reports for the unit tests, for now these are only working for Linux (Semaphore).

Clone this wiki locally