Clone this repo:

Branches

  1. c3fb820 clang-tidy: format with config-clang-tidy by Patrick Williams · 7 days ago master
  2. 9f2a21c meson: reformat with meson formatter by Patrick Williams · 4 months ago
  3. a97cdd1 build: use allowed over enabled or not-disabled by Patrick Williams · 4 months ago
  4. b111364 clang-format: re-format for clang-19 by Patrick Williams · 6 months ago
  5. 55fd87c Fix spelling mistakes using codespell by Manojkiran Eda · 12 months ago

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:

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

For a test / debug build, a typical configuration is

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