Skip to content

FEQParse

Quickstart

Install with Fortran Package Manager (fpm)

git clone https://github.com/fluidnumerics/feq-parse ~/feq-parse
  • Install
cd ~/feq-parse
fpm build --profile release
fpm test --profile release

Install with Spack

git clone https://github.com/spack/spack ~/spack
source ~/spack/share/spack/setup-env.sh
spack compiler find
  • Install feq-parse
spack install feq-parse

Install with CMake

  • Clone feq-parse
git clone https://github.com/fluidnumerics/feq-parse ~/feq-parse
  • Install
mkdir ~/feq-parse/build
cd ~/feq-parse/build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${HOME}/apps/feq-parse ../
make
make install

Learn more