commit | 462799829b2952f185ee2fcc7c75bc49a027dd8f | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Jul 22 16:03:39 2022 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri Jul 22 16:03:39 2022 -0500 |
tree | 4408fc309fadba687ad8cc1093cf803d276700e2 | |
parent | ee53ad33323285955f23a7ef9ab8daa18c3c76b8 [diff] |
OWNERS: switch 'matches' to 'matchers' The original OWNERS template had a mistake which used 'matches' instead of the field supported by the Gerrit plugin 'matchers'. Update the OWNERS file to have the correct field. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I9af5494f27ca0e36fcf999071936f7c770e79474
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