commit | 6d5925872943b8fa061a3ba1521235257953c454 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Sat Feb 01 08:37:30 2025 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Sat Feb 01 08:37:30 2025 -0500 |
tree | af8b5a480fe8b4cb38784af670f0d0d23d0ae663 | |
parent | 8e20b6b9cba90547fd5aad889a07e4c36fe9c573 [diff] |
meson: reformat with meson formatter Apply the `meson format` results. Change-Id: Id35000c51c915146c22d3213c682d1a546d4a78d Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
stdplus is a c++ project containing commonly used classes and functions for the Linux platform. Note the goals of this project are to implement only the minimum set of features needed by the OpenBMC project and other users. You may find the included set of functions currently quite sparse.
This project provides the following primitives:
Test cases require google{test,mock}, valgrind, and lcov. It also requires the Meson Build System which can be installed following the instructions at mesonbuild.com.
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