https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 715ee8f1ca05c25d60826ecbedcc64d76d198e3f authored by Lars Bilke on 16 March 2021, 09:17:16 UTC
[cmake-format] Remaining cmake files.
Tip revision: 715ee8f
mpi.sh
if [ -n "$ZSH_VERSION" ]; then
    DIR=$( cd $(dirname "${(%):-%x}") ; pwd -P )
else
    DIR=$( cd $(dirname "${BASH_SOURCE[0]}") ; pwd -P )
fi

source $DIR/cli.sh
export CC=mpicc
export CXX=mpic++
back to top