mirror of
https://develop.openfoam.com/Development/ThirdParty-common.git
synced 2025-12-08 06:57:50 +00:00
- only addresses -mesa-prefix behaviour. The -mesa-lib option makes no assumptions at all. STYLE: update versions in makeParaView.example, makeVTK.example
17 lines
373 B
Bash
Executable File
17 lines
373 B
Bash
Executable File
#!/bin/sh
|
|
# An example for building particular combinations of VTK with
|
|
# - mesa (off-screen only)
|
|
|
|
vtk=VTK-8.1.0
|
|
# mesa=mesa-11.2.2
|
|
# mesa=mesa-13.0.3
|
|
mesa=mesa-17.1.1
|
|
|
|
./makeVTK \
|
|
$vtk \
|
|
-osmesa \
|
|
-mesa-prefix $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$mesa \
|
|
"$@"
|
|
|
|
#------------------------------------------------------------------------------
|