Skip to content
Snippets Groups Projects
Commit 96e5f99b authored by Mark Olesen's avatar Mark Olesen
Browse files

BUG: paraview plugin not being built in merged version (closes #258)

parent 91cfaa52
No related branches found
No related tags found
No related merge requests found
...@@ -41,31 +41,25 @@ canBuildPlugin() ...@@ -41,31 +41,25 @@ canBuildPlugin()
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# major version as per paraview include directory:
# Eg, "PREFIX/include/paraview-3.4" -> "3.4"
major="${ParaView_INCLUDE_DIR##*-}"
case "$ParaView_VERSION" in case "$major" in
3*) 3.[0-9]*)
if canBuildPlugin if canBuildPlugin
then then
[ -n "$PV_PLUGIN_PATH" ] || { (
echo "$0 : PV_PLUGIN_PATH not valid - it is unset"
exit 1
}
# Ensure CMake gets the correct C/C++ compilers
[ -n "$WM_CC" ] && export CC="$WM_CC"
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
wmake $targetType vtkPV3Readers wmake $targetType vtkPV3Readers
PV3blockMeshReader/Allwmake $targetType $* PV3blockMeshReader/Allwmake $*
PV3FoamReader/Allwmake $targetType $* PV3FoamReader/Allwmake $*
else )
echo "ERROR: ParaView not found in $ParaView_DIR"
fi fi
;; ;;
*) *)
echo echo
echo "NOTE: skipping build of ParaView V3 plugin(s)" echo "NOTE: skipping build of ParaView V3 plugin(s)"
echo " different version: ParaView_VERSION=$ParaView_VERSION" echo " include directory was for paraview major version '${major:-none}'"
echo echo
;; ;;
esac esac
......
...@@ -42,37 +42,31 @@ canBuildPlugin() ...@@ -42,37 +42,31 @@ canBuildPlugin()
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
case "$ParaView_VERSION" in # major version as per paraview include directory:
4* | 5*) # Eg, "PREFIX/include/paraview-5.0" -> "5.0"
major="${ParaView_INCLUDE_DIR##*-}"
case "$major" in
[45].[0-9]*)
if canBuildPlugin if canBuildPlugin
then then
[ -n "$PV_PLUGIN_PATH" ] || { (
echo "$0 : PV_PLUGIN_PATH not valid - it is unset"
exit 1
}
# ensure CMake gets the correct C/C++ compilers
[ -n "$WM_CC" ] && export CC="$WM_CC"
[ -n "$WM_CXX" ] && export CXX="$WM_CXX"
wmake $targetType vtkPVReaders wmake $targetType vtkPVReaders
PVblockMeshReader/Allwmake $targetType $* PVblockMeshReader/Allwmake $*
PVFoamReader/Allwmake $targetType $* PVFoamReader/Allwmake $*
# Dummy directory to trigger proper 'wclean all' behaviour # Dummy directory to trigger proper 'wclean all' behaviour
# - the Allwclean will otherwise not be used # - the Allwclean will otherwise not be used
mkdir -p Make mkdir -p Make
else )
echo "ERROR: ParaView not found in $ParaView_DIR"
fi fi
;; ;;
*) *)
echo echo
echo "NOTE: skipping build of ParaView plugin(s)" echo "NOTE: skipping build of ParaView plugin(s)"
echo " different version: ParaView_VERSION=$ParaView_VERSION" echo " include directory was for paraview major version '${major:-none}'"
echo echo
;; ;;
esac esac
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment