LogLog Code
Brought to you by:
hansvonwurst
| File | Date | Author | Commit |
|---|---|---|---|
| build | 2008-08-04 | hansvonwurst | [r1] loglog erste version |
| lib | 2008-08-04 | hansvonwurst | [r1] loglog erste version |
| src | 2008-08-04 | hansvonwurst | [r1] loglog erste version |
| CMakeLists.txt | 2008-08-04 | hansvonwurst | [r1] loglog erste version |
| COPYING.txt | 2008-08-04 | hansvonwurst | [r2] |
| README.txt | 2008-08-04 | hansvonwurst | [r2] |
------------------------------------------------------------ ------------------------------------------------------------ LogLog Copyright 2008 - Tobias Mayer <trmayer@web.de> Provided under GNU GPLv2 or later (license available in COPYING.txt) ------------------------------------------------------------ ------------------------------------------------------------ LogLog is an easy to use logging library for c++. With it you can log to console, files and to memory using a ringbuffer for a specified count of log entries (to hold the last n logs). --------------------- - using the library - --------------------- You may use the precompiled library file libloglog.a in folder lib/ and then link against it or include the needed header directly to your project. But you alrady know that, right ;-) If you wanna compile the library on your own for (statically) linking see below. ------------- - compiling - ------------- To compile LogLog you need cmake. If it is availabel go to the "build"-folder and type "ccmake .." to check the configuration (press "c" in the graphical interface). The complete configuration is stored in "CMakeCache.txt". If no problems occur, you can generate the makefile by pressing "g". After that you can exit and type "make" to start compiling. The library is then available in "build/lib/libloglog.a".