hermite
0.0.1
|
This page shows how you can build the hermite library to contribute.
Building hermite requires the following software installed:
>= 3.9
The following sequence of commands builds hermite. It assumes that your current working directory is the top-level directory of the freshly cloned repository:
The build process can be customized with the following CMake variables, which can be set by adding -D<var>={ON, OFF}
to the cmake
call:
HERMITE_BUILD_TESTING
: Enable building of the test suite (default: ON
)HERMITE_BUILD_DOCS
: Enable building the documentation (default: ON
)When built according to the above explanation (with -DHERMITE_BUILD_TESTING=ON
), the C++ test suite of hermite
can be run using ctest
from the build directory:
hermite provides a Doxygen documentation. You can build the documentation locally by making sure that Doxygen
is installed on your system and running this command from the top-level build directory:
The web documentation can then be browsed by opening doc/html/index.html
in your browser.