web/documents/compiling.mdx
Building Conky with CMake is straightforward:
mkdir build
cd build
cmake ../ # pass the path to the sources to cmake
OR
ccmake ../ # use the ncurses interface instead, or try cmake-gui
make
sudo make install # optional
Conky provides a number of build options. The easiest way to explore them is to
use ccmake or cmake-gui.
Some build-time features, such as documentation generation, require third-party
tools. CMake will usually tell you when one is missing. For documentation
generation, you will need the docbook2X package, which is available on most
distributions.