Go to file
Brenden Matthews 3efe71520f Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
cmake Minor CMake fixes. 2010-01-01 13:50:12 -08:00
data Fix default config when built without x11 2009-11-16 21:42:55 +01:00
doc Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
extras fix doc typo and add highlighting for times_in_seconds 2009-12-13 00:28:01 +01:00
lua Add CMake build support for Lua bindings. 2009-12-17 19:46:26 -08:00
m4 Added some completely pointless OpenMP optimizations(?) 2009-05-05 17:36:12 -06:00
src Minor build fix. 2010-01-01 13:45:16 -08:00
.gitignore Handle build.h, too. 2009-12-07 11:51:00 -08:00
AUTHORS Switching email addrs. 2009-09-26 20:40:42 -07:00
CMakeLists.txt Add CMake build support for Lua bindings. 2009-12-17 19:46:26 -08:00
COPYING Update copyright stuff, fix conky.conf weirdness. 2009-03-29 22:55:51 -06:00
ChangeLog Replace GHashTable with tr1::unordered_map in tcp_portmon 2009-12-09 23:59:07 +01:00
INSTALL Initial revision 2005-07-20 00:30:40 +00:00
LICENSE.BSD Update copyright stuff, fix conky.conf weirdness. 2009-03-29 22:55:51 -06:00
LICENSE.GPL clarifying licensing 2007-08-10 19:53:44 +00:00
Makefile.am add emacs indentation variables to source files in line with current vim settings 2009-07-28 23:44:22 +02:00
NEWS Reformatted all code 2008-02-20 20:30:45 +00:00
README.cmake Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
TODO Removing old svn keywords. 2008-12-09 16:35:49 -07:00
autogen.sh Deprecate autotools, update docs to reflect cmake build system. 2010-01-01 14:08:57 -08:00
changelog2html.py Fix charset of changelog. 2009-03-29 23:18:17 -06:00
check_docs.py Update the doc date when check_docs.py is ran. 2009-07-20 17:32:56 -06:00
config.rpath add config.rpath to satisfy AM_ICONV 2007-01-08 01:10:12 +00:00
configure.ac.in cosmetic fixup session 2009-12-28 21:32:07 +01:00
text2c.sh use the builtin config also as a default one 2008-12-14 15:45:30 +01:00

README.cmake

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).