Login  Register

Re: Installing LibreCAD3.0

Posted by Feragon on Apr 08, 2020; 7:43am
URL: https://forum.librecad.org/Installing-LibreCAD3-0-tp5718714p5718727.html

Hello,

When you compile software depending on libraries on Debian, you need the -dev packages. Here, it looks like libcairo2-dev is missing.

However, Cairo is not required for the main LibreCAD executable (only for unit tests and the CLI version). When generating the CMake files (cmake ..) you can add those options:
cmake -DWITH_LUACMDINTERFACE=FALSE -DWITH_RENDERING_UNITTESTS=OFF -DWITH_CAIRO=OFF ..