commit | 17759263274090e4f8e4b8e52f99f0a9cc095ba8 | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Fri Sep 10 11:46:02 2021 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Fri Sep 10 11:46:02 2021 -0500 |
tree | efa400d64d9cb7d6721cb31ff8b85c1a728a7f4c | |
parent | 5e3b13f0224afb09bae9f32e7ab4464d34afcb1f [diff] |
clang-format: apply clang-12 changes Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I35b80ded49076f622761b6595ad9e33efccaf205
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