A C++ configuration library CCI compliant
mkdir build
cd buildOptions you can append to CMake:
-DENABLE_CONAN=ON: enable Conan support-DBUILD_EXAMPLES=ON: build examples-DBUILD_TESTS=ON: build tests
cmake [...]
make -j8Gcov support is available by activating the option ENABLE_GCOV in cmake (ENABLE_GCOV=ON). Only compatible with GCC and debug mode must be enabled (forced when cmake is called with ENABLE_GCOV=ON).
To build tests, enable BUILD_TESTS option with cmake:
cmake [...] -DBUILD_TESTS=ONThen run tests with make test
To build Doxygen doc, enable BUILD_DOXYGEN option with cmake:
cmake [...] -DBUILD_DOXYGEN=ONThen run tests with make or make doxygen