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