mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
16 lines
358 B
Bash
Executable File
16 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # run from this directory
|
|
makeType=${1:-libso}
|
|
set -x
|
|
|
|
export ParMGridGen=$WM_THIRD_PARTY_DIR/ParMGridGen-1.0
|
|
|
|
if [ -d "$ParMGridGen/MGridGen/Lib" ]
|
|
then
|
|
wmake $makeType MGridGenGamgAgglomeration
|
|
fi
|
|
|
|
wmake $makeType pairPatchAgglomeration
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|