The clogger library provides a simple, high performance logging framework based on the ideas in the Logbook project.
API documentation can be found here.
To build clogger, you need the following libraries installed on your system:
If you want to build the documentation, you also need:
The clogger library uses CMake as its build manager. In most cases, you should be able to build the source code using the following (from the top level of your copy of the source tree):
$ mkdir .build
$ cd .build
$ cmake .. \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=$PREFIX
$ make
$ make test
$ make install
You might have to run the last command using sudo, if you need administrative
privileges to write to the $PREFIX
directory.