commit | ac794347f1d7c5ad5368a502ec913490127db53b | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@inspur.com> | Wed Aug 16 10:13:45 2023 +0800 |
committer | George Liu <liuxiwei@ieisystem.com> | Wed Nov 01 01:54:50 2023 +0000 |
tree | 150717f9be451c97605ac054d44c67a27966f2d8 | |
parent | 0249f9ed9e6d0ef17d7fe82c15384fe881e806a0 [diff] |
meson_options.txt: Support for reading options from meson.options Support has been added for reading options from meson.options instead of meson_options.txt[1]. These are equivalent, but not using the .txt extension for a build file has a few advantages, chief among them many tools and text editors expect a file with the .txt extension to be plain text files, not build scripts. [1] https://mesonbuild.com/Release-notes-for-1-1-0.html#support-for-reading-options-from-mesonoptions Signed-off-by: George Liu <liuxiwei@inspur.com> Change-Id: Ib8500abd77c6bf7e670ff6e874d5048858def7cf
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