Skip to content
Snippets Groups Projects
Commit 1209e915 authored by andy's avatar andy
Browse files

ENH: Added PV library existence check to paraFoam script

parent ac261246
Branches
Tags
No related merge requests found
......@@ -117,6 +117,24 @@ do
done
#
# check that reader module has been built
#
if [ ! -f $PV_PLUGIN_PATH/libPV3FoamReader_SM.so ]
then
cat<< BUILDREADER
FATAL ERROR: ParaView reader module libraries do not exist
Please build the reader module before continuing:
cd \$FOAM_UTILITIES/postProcessing/graphics/PV3Readers
./Allwclean
./Allwmake
BUILDREADER
exit 1
fi
#
# check for --data=... argument
#
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment