commit | 5320b1f5d7ed05faba9fcb0919792d55955ff7d1 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Fri Mar 29 20:00:37 2019 -0700 |
committer | William A. Kennington III <wak@google.com> | Wed Jun 03 15:49:03 2020 -0700 |
tree | 51ae8c2279b7bab42c76cd87540abcc3941f96a7 | |
parent | 9bfd7b031e91afe57cdbf8ec01c9f3949933c1c6 [diff] |
source/*: Implement heap based userdata This makes no immediate change to the external interface, but it will enable us to do things like making copies of the event sources and support for floating event source types. Change-Id: Ida73e773eb0869f6f6f21c1e03c61e9ce2b5625c 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