A Fortran library to provide assistance to testing.
The documentation can be found here.
To configure, first navigate to the project directory and then issue the following command.
cmake -B build -DCMAKE_BUILD_TYPE=ReleaseTo build the C API:
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_FERROR_C_API=TRUEIf testing is to be included then:
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=TRUEor
cmake -B "build" -DCMAKE_BUILD_TYPE=Release -DBUILD_FERROR_C_API=TRUE -DBUILD_TESTING=TRUETo build:
cmake --build buildFinally, to run the tests:
ctest --test-dir build/testThis library can be built using Fortran Package Manager (fpm) using the supplied fpm.toml.
fpm build
fpm test --list
fpm test <test_name, see `fpm.toml` or list>