autotools: Remove

Meson is now used to build this package in all of the necessary places.

Change-Id: I704d5cdd51129d8dc56c6a2456792846a3711778
Signed-off-by: William A. Kennington III <wak@google.com>
8 files changed
tree: 00c8f7ef61c5e048879f77b8cfe0aa9e1c5f2277
  1. example/
  2. src/
  3. test/
  4. .clang-format
  5. .lcovrc
  6. LICENSE
  7. MAINTAINERS
  8. meson.build
  9. meson_options.txt
  10. README.md
README.md

stdplus

stdplus is a c++ project containing commonly used classes and functions for the Linux platform.

Dependencies

Test cases require google{test,mock}, valgrind, and lcov.

Building

For a standard release build, you want something like:

./bootstrap.sh
./configure --disable-examples --disable-tests
make
make install

For a test / debug build, a typical configuration is

./bootstrap.sh
./configure --enable-tests --enable-coverage --enable-valgrind
make
make check
make check-valgrind
make check-code-coverage