xref: /openbmc/sdeventplus/README.md (revision a8c11e3c)
1# sdeventplus
2
3sdeventplus is a c++ wrapper around the systemd sd_event apis meant to provide
4c++ ergonomics to their usage.
5
6## Dependencies
7
8The sdeventplus library requires a libsystemd development package on the system
9for sd-event.
10
11## Building
12
13For a standard release build, you want something like:
14
15```
16meson setup -Dexamples=false -Dtests=disabled builddir
17ninja -C builddir
18ninja -C builddir install
19```
20
21For a test / debug build, a typical configuration is
22
23```
24meson setup -Dtests=enabled builddir
25meson test -C builddir
26```
27