commit | 05f530218be779630e9d428ef44b073caad4f2d5 | [log] [tgz] |
---|---|---|
author | George Liu <liuxiwei@inspur.com> | Wed Aug 16 09:42:05 2023 +0800 |
committer | George Liu <liuxiwei@ieisystem.com> | Wed Nov 01 01:54:24 2023 +0000 |
tree | 5ab635ae918c4a3e89d668a4598f858be23599e0 | |
parent | c6b3d0fb51296598747bac9d14623e3ce8fe93d8 [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: Ida0b62337f249e7d96f58c2006c6ca4160825b6c
gpioplus is a c++ wrapper around the linux gpio ioctl interface. It aims to provide c++ ergonomics to the usage.
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