Appearance
Installation
Option 1 — fpm (recommended)
With Fortran Package Manager no manual setup is needed.
bash
fpm build
fpm testOr add FACE as a dependency in your fpm.toml:
toml
[dependencies]
FACE = { git = "https://github.com/szaghi/FACE" }Option 2 — CMake
bash
cmake -S . -B build
cmake --build build
cmake --install buildOption 3 — Install script
FACE ships a bash script (install.sh, downloadable from the latest release) that automates download and build:
shell
install.sh --download git --build cmakeSupported download methods: git, wget. Supported build systems: fobis, make, cmake.