commit | ecd81c8276ff746ca8188a02c8d3d31ae6987f73 | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@ieisystem.com> | Tue Aug 06 13:07:33 2024 +0800 |
committer | George Liu <liuxiwei@ieisystem.com> | Tue Aug 06 13:07:33 2024 +0800 |
tree | a517e59f5cfab0c23fa16d40672628d0838d3c97 | |
parent | ac794347f1d7c5ad5368a502ec913490127db53b [diff] |
Fix MD040 warnings The following warnings are generated by using markdownlint analysis: ``` MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"] ``` Refer to markdown-lint [1] to fix MD040 [1]: https://github.com/updownpress/markdown-lint/blob/master/rules/040-fenced-code-language.md Signed-off-by: George Liu <liuxiwei@ieisystem.com> Change-Id: I942310b9d6bc3587d3cfe16c13d53d27d64fada4
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