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

Temporary fix to allow the reader module to build for ParaView-3.3-cvs

parent 7d7a2c22
Branches
Tags
No related merge requests found
#!/bin/sh
set -x
if [ "$ParaView_VERSION" = "3" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
if [ "$ParaView_VERSION" = "3.3-cvs" -a "$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
#!/bin/sh
set -x
if [ "$ParaView_VERSION" != "3" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
if [ "$ParaView_VERSION" != "3.3-cvs" -a "$ParaView_DIR" -a -r $ParaView_DIR ] ; then
wmake libso vtkFoam
(cd PVFoamReader; mkdir -p Make/$WM_OPTIONS > /dev/null 2>&1; cd Make/$WM_OPTIONS; cmake ../..; make)
fi
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