Skip to content
Snippets Groups Projects
makeParaView.example 373 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    # An example for building particular combinations of ParaView with
    # - mpi (0 = no upper-limit on processes)
    # - off-screen mesa
    
    mesa=mesa-11.2.2
    
    # mesa=mesa-13.0.2
    
    
    ./makeParaView \
        -mpi=0 \
    
        -mesa-prefix $WM_THIRD_PARTY_DIR/platforms/$WM_ARCH$WM_COMPILER/$mesa \
    
        "$@"
    
    #------------------------------------------------------------------------------