commit | 42827deb280a4fbe22d044bf58831476415340ad | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Thu Aug 04 11:40:13 2022 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Thu Aug 04 11:40:13 2022 -0500 |
tree | 4a444756653c2a247706c730ee5a6431fe2b5eaa | |
parent | 462799829b2952f185ee2fcc7c75bc49a027dd8f [diff] |
MAINTAINERS: remove file The MAINTAINERS file is deprecated in favor of OWNERS. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ifa030a2ca186ebeaa6878379e1f96074135dfb3f
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