Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openbmc/sdeventplus
https://github.com/openbmc/sdeventplus
Last synced: about 10 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/openbmc/sdeventplus
- Owner: openbmc
- License: apache-2.0
- Created: 2018-08-22T01:44:35.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T20:10:46.000Z (3 months ago)
- Last Synced: 2024-08-21T22:27:47.726Z (3 months ago)
- Language: C++
- Size: 451 KB
- Stars: 2
- Watchers: 5
- 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
```