Files
ThirdParty-common/makeVTK.example
mark 391a6b24ca CONFIG: update patches for paraview 5.0.1, 5.1.0, 5.1.2
- also avoid issues with '+' being treated as a list separator
  (already patched in 5.2)

--
STYLE: reformat version check output (in makeParaView)
2016-12-14 10:14:25 +01:00

16 lines
347 B
Bash
Executable File

#!/bin/sh
# An example for building particular combinations of VTK with
# - off-screen mesa
vtk=VTK-7.1.0
# mesa=mesa-11.2.2
mesa=mesa-13.0.1
./makeVTK \
$vtk \
-osmesa \
-mesa-prefix $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$mesa \
"$@"
#------------------------------------------------------------------------------