mirror of
https://github.com/dyne/frei0r.git
synced 2025-12-05 14:19:59 +01:00
* remove autoconf build system * update documentation * add links to BSD ports in README BREAKING CHANGE: Package maintainers relying on autoconf please note that this won't work anymore. Our CMake setup is tested to support both GNUMake, Ninja and NMake for the compiler legwork.
640 B
640 B
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' ../