Files
ThirdParty-common/makeVTK.example
mark cc2161856b ENH: improve third-party make with central installations
- initial attempt for building CGAL as headers-only, and without
  gmp/mpfr
2016-11-27 16:00:43 +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.2
./makeVTK \
$vtk \
-osmesa \
-mesa-prefix $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$mesa \
"$@"
#------------------------------------------------------------------------------