commit | 220b5dabb8f83995b5cc487d945d810da1d151f5 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Fri Mar 29 15:30:59 2019 -0700 |
committer | William A. Kennington III <wak@google.com> | Wed Jun 03 13:44:27 2020 -0700 |
tree | 67717012e4a4ac98d5b27373b2b72d996e693b52 | |
parent | e68f5b5171fffc053fefc7e9824e76ccf506426e [diff] |
source/*: Use unique_function so our callbacks can be move-only This will allow move-only types like unique_ptr to be used in callbacks. Change-Id: Ia99925cea3bf96e3c213ba0fe093cc6ab3f5a421 Signed-off-by: William A. Kennington III <wak@google.com>
sdeventplus is a c++ wrapper around the systemd sd_event apis meant to provide c++ ergonomics to their usage.
The sdeventplus library requires a libsystemd development package on the system for sd-event.
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