]> begriffs open source - libderp/blob - README.md
WIP: Meson conversion
[libderp] / README.md
1 ## libderp, yet another C collection library
2
3 Why you might use it
4
5 * builds with Meson, any C99 compiler
6 * a proper library that you can link against
7 * no abuse of translation units, no weird macros
8 * includes proper man pages (TODO)
9 * shared and static library
10 * pkg-config interface
11 * developer friendly ISC license
12
13 Why you might avoid it
14
15 * containers use void pointers, e.g. no vector of ints
16 * pedestrian algorithms, not cutting edge
17 * not (yet) thread safe
18
19 ### Installation
20
21 Compile the shared and static libraries:
22
23 ```sh
24 meson setup build
25 cd build
26 meson compile
27 meson install
28 ```