1 #----------------------------------*-sh-*--------------------------------------
3 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 #------------------------------------------------------------------------------
9 # This file is part of OpenFOAM.
11 # OpenFOAM is free software: you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation, either version 3 of the License, or
14 # (at your option) any later version.
16 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 # You should have received a copy of the GNU General Public License
22 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
28 # Setup file for paraview-3.x
29 # Sourced from OpenFOAM-<VERSION>/etc/cshrc or from foamPV alias
32 # The env. variables 'ParaView_DIR' and 'ParaView_MAJOR'
33 # are required for building plugins
34 #------------------------------------------------------------------------------
37 set cleaned=`$WM_PROJECT_DIR/bin/foamCleanPath "$PATH" "$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/cmake- $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/paraview-"`
38 if ( $status == 0 ) setenv PATH $cleaned
40 # determine the cmake to be used
42 foreach cmake ( cmake-2.8.4 cmake-2.8.3 cmake-2.8.1 )
43 set cmake=$WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$cmake
45 setenv CMAKE_HOME $cmake
46 setenv PATH ${CMAKE_HOME}/bin:${PATH}
51 #- ParaView version, automatically determine major version:
52 setenv ParaView_VERSION 3.10.1
53 setenv ParaView_MAJOR detect
56 # Evaluate command-line parameters for ParaView
60 # name=value -> setenv name value
61 eval "setenv $argv[1]:s/=/ /"
68 # set MAJOR version to correspond to VERSION
69 # ParaView_MAJOR is "<digits>.<digits>" from ParaView_VERSION
70 switch ("$ParaView_VERSION")
71 case "$ParaView_MAJOR".*:
72 # version and major appear to correspond
76 # extract major from the version
77 setenv ParaView_MAJOR `echo ${ParaView_VERSION} | \
78 sed -e 's/^\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
83 set paraviewInstDir=$WM_THIRD_PARTY_DIR/ParaView-${ParaView_VERSION}
84 setenv ParaView_DIR $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/paraview-${ParaView_VERSION}
86 # set paths if binaries or source are present
87 if ( -r $ParaView_DIR || -r $paraviewInstDir ) then
88 setenv PATH ${ParaView_DIR}/bin:${PATH}
89 setenv LD_LIBRARY_PATH "${ParaView_DIR}/lib/paraview-${ParaView_MAJOR}:${LD_LIBRARY_PATH}"
90 setenv PV_PLUGIN_PATH $FOAM_LIBBIN/paraview-${ParaView_MAJOR}
92 # add in python libraries if required
93 set paraviewPython=$ParaView_DIR/Utilities/VTKPythonWrapping
94 if ( -r $paraviewPython ) then
95 if ($?PYTHONPATH) then
96 setenv PYTHONPATH ${PYTHONPATH}:${paraviewPython}:$ParaView_DIR/lib/paraview-${ParaView_MAJOR}
98 setenv PYTHONPATH ${paraviewPython}:$ParaView_DIR/lib/paraview-${ParaView_MAJOR}
102 unsetenv PV_PLUGIN_PATH
106 unset cleaned cmake paraviewInstDir paraviewPython
108 # -----------------------------------------------------------------------------