Skip to content
Snippets Groups Projects
Commit e13118f8 authored by henry's avatar henry
Browse files

Corrected based on Mark's suggestion. These now should be the

same as in the olesenm branch.
parent c48a0638
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
set -x set -x
if [ "$ParaView_VERSION" = "3.3-cvs" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
wmake libso vtkPV3Foam then
(cd PV3FoamReader; mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1; cd Make/$WM_OPTIONS; cmake ../..; make) case "$ParaView_VERSION" in
3*)
wmake libso vtkPV3Foam
(
cd PV3FoamReader
mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1
cd Make/$WM_OPTIONS
cmake ../..
make
)
;;
esac
fi fi
#!/bin/sh #!/bin/sh
set -x set -x
if [ "$ParaView_VERSION" != "3.3-cvs" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then if [ -d "$ParaView_DIR" -a -r "$ParaView_DIR" ]
wmake libso vtkFoam then
(cd PVFoamReader; mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1; cd Make/$WM_OPTIONS; cmake ../..; make) case "$ParaView_VERSION" in
2*)
wmake libso vtkFoam
(
cd PVFoamReader
mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1
cd Make/$WM_OPTIONS
cmake ../..
make
)
;;
esac
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment