openfoam/applications/utilities/postProcessing/graphics/PV4Readers/PV4blockMeshReader/Allwmake
2013-06-17 16:48:24 +01:00

18 lines
391 B
Bash
Executable File

#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory
set -x
if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
then
wmake libso vtkPV4blockMesh
(
cd PV4blockMeshReader
mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1
cd Make/$WM_OPTIONS
cmake ../..
make
)
fi
# ----------------------------------------------------------------- end-of-file