Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 640 Bytes

BUILD.md

File metadata and controls

26 lines (17 loc) · 640 Bytes

Build instructions

Frei0r can be built using CMake.

The presence of optional libraries on the system will trigger compilation of extra plugins. These libraries are:

  • Gavl required for scale0tilt and vectorscope filters

  • OpenCV required for facebl0r filter

  • Cairo required for cairo- filters and mixers

It is recommended to use a separate build sub-folder.

mkdir -p build
cd build && cmake ../
make

Also ninja and nmake are supported through cmake:

cmake -G 'Ninja' ../
cmake -G 'NMake Makefiles' ../