commit | 90dbcd793a8c7516e48f9ca37c501173632f9159 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Thu Aug 16 13:54:35 2018 -0700 |
committer | William A. Kennington III <wak@google.com> | Thu Aug 16 13:54:35 2018 -0700 |
tree | cbc77470c6b1c2f013f5bceba4907051d0d548ed | |
parent | 20832de74270cb59906c4851ff438c5412445536 [diff] |
configure: Fix building when tests are disabled
sdeventplus is a c++ wrapper around the systemd sd_event apis meant to provide c++ ergonomics to their usage.
The sdeventplus library requires libsystemd for sd-event.
Test cases require google{test,mock}, valgrind, and lcov.
For a standard release build, you want something like:
./bootstrap.sh ./configure --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