Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/openbmc/sdeventplus


https://github.com/openbmc/sdeventplus

Last synced: about 10 hours ago
JSON representation

Awesome Lists containing this project

README

        

# sdeventplus

sdeventplus is a c++ wrapper around the systemd sd_event apis meant to provide
c++ ergonomics to their usage.

## Dependencies

The sdeventplus library requires a libsystemd development package on the system
for sd-event.

## Building

For a standard release build, you want something like:

```sh
meson setup -Dexamples=false -Dtests=disabled builddir
ninja -C builddir
ninja -C builddir install
```

For a test / debug build, a typical configuration is

```sh
meson setup -Dtests=enabled builddir
meson test -C builddir
```