1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-27 04:32:55 +00:00
Go to file
2010-08-28 12:26:12 +02:00
cmake Add a CMAKE variable for the patch program 2010-06-13 19:09:07 +02:00
data
doc Fix 'nvidia with ncurses segfaults' (sf.net #3006233) 2010-08-13 15:23:11 +02:00
extras Fix 'nvidia with ncurses segfaults' (sf.net #3006233) 2010-08-13 15:23:11 +02:00
lua Fix "wrong type of arguments for cairo_set_dash", sf.net #3014648 2010-06-13 18:57:07 +02:00
src Add modelines to imlib.h 2010-08-28 12:26:12 +02:00
.gitignore Add support for $no_update 2010-04-17 15:19:44 +02:00
AUTHORS
autogen.sh
changelog2html.py
ChangeLog
check_docs.py
CMakeLists.txt
COPYING
INSTALL
LICENSE.BSD
LICENSE.GPL
NEWS
README.cmake
text2c.sh
TODO

Hello, there.

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
  $ mkdir build
  $ cd build
2. Run the cmake configuration process
  $ cmake ../ # pass the path to the sources to cmake
  OR
  $ ccmake ../ # you can also use the fance curses interface, or try cmake-gui
3. Compile as usual, and enjoy the out-of-source goodness
  $ make
  # 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).