Files
OpenFOAM-12/applications/utilities/postProcessing/graphics/PV3Readers/PV3FoamReader/Allwmake
2016-02-15 18:30:24 +00:00

18 lines
381 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 vtkPV3Foam
(
cd PV3FoamReader
mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1
cd Make/$WM_OPTIONS
cmake ../..
make
)
fi
#------------------------------------------------------------------------------