Files
ThirdParty-common/makeVTK.example
Mark Olesen 6e0c9f9d8b ENH: makeVTK -mpi also define VTK_Group_MPI=ON
- this pulls in the other bits (Module_vtkParallelMPI,
  Module_vtkRenderingParallel, ...)
2018-12-05 23:37:00 +01:00

24 lines
560 B
Bash
Executable File

#!/bin/sh
# An example for building particular combinations of VTK with
# - mesa (off-screen only)
vtk=VTK-9.0.0
# mesa=mesa-11.2.2
# mesa=mesa-13.0.3
mesa=mesa-17.1.1
# Module_vtkAcceleratorsVTKm : Request building vtkAcceleratorsVTKm
#
# -mpi implies VTK_Group_MPI : Request building MPI modules
set -x
./makeVTK \
-mpi \
-osmesa \
-mesa-prefix $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$mesa \
$vtk "$@" \
Module_vtkAcceleratorsVTKm=ON
#------------------------------------------------------------------------------