https://github.com/openbmc/sdeventplus
https://github.com/openbmc/sdeventplus
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/openbmc/sdeventplus
- Owner: openbmc
- License: apache-2.0
- Created: 2018-08-22T01:44:35.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-02-01T13:53:53.000Z (over 1 year ago)
- Last Synced: 2025-03-22T04:02:01.748Z (over 1 year ago)
- Language: C++
- Size: 386 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```