-
Notifications
You must be signed in to change notification settings - Fork 171
Home
Rui Abreu Ferreira edited this page Jun 8, 2015
·
24 revisions
To build you need Qt5, Neovim and CMake.
System | Dependencies |
---|---|
Ubuntu | sudo apt-get install qtbase5-dev cmake |
This 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 Windows are available for the staging tag, these are built automatically by Appveyor.
Semaphore CI builds for Linux and MinGW
Appveyor builds for Windows/MSVC
Coveralls generates coverage reports for the unit tests, for now these are only working for Linux (Semaphore).