1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 06:59:09 +00:00
conky/web/documents/compiling.mdx

42 lines
996 B
Plaintext
Raw Normal View History

---
title: Compiling
description: How to compile Conky from source
indexWeight: 0
---
Using CMake to build Conky is pretty easy, and here is how I do it:
1. From the top level source dir, create a build working dir, and cd into it
```shell-session
2023-06-24 18:34:22 +00:00
mkdir build
cd build
```
2. Run the cmake configuration process
```shell-session
2023-06-24 18:34:22 +00:00
cmake ../ # pass the path to the sources to cmake
```
OR
```shell-session
2023-06-24 18:34:22 +00:00
ccmake ../ # you can also use the fance curses interface, or try cmake-gui
```
3. Compile as usual, and enjoy the out-of-source goodness
```shell-session
2023-06-24 18:34:22 +00:00
make
sudo make install # if you want
```
There are a number of build options for Conky, and the best way to discover
them is to use the `ccmake` (or `cmake-gui`) CMake tool for browsing them.
Certain Conky build time features (such as doc generation) require third-party
applications, which you should be notified of via CMake. In the case of doc
generation, you'll need the docbook2X package (available on most
distributions).