Skip to content
Snippets Groups Projects
Select Git revision
  • 6afcf741c9e2220d4d20865b64cf0c4791cb9161
  • 5.4 default protected
  • 5.6-fix-android-build-dependencies
  • fix/stuck-in-geometry
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.6
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.5-1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
24 results

BP_locomotiveAnimation.uasset

Blame
  • install.sh 776 B
    #!/bin/bash
    module load cmake/3.16.4
    module load gcc/10
    
    mkdir dependencies
    cd dependencies
    
    # Install Ospray.
    wget https://github.com/ospray/ospray/releases/download/v1.8.5/ospray-1.8.5.x86_64.linux.tar.gz
    ZIP=ospray-1.8.5.x86_64.linux.tar.gz
    tar -xzvf $ZIP
    rm $ZIP
    mv ./ospray-1.8.5.x86_64.linux ./ospray-1.8.5
    
    # Install VTK.
    git clone https://github.com/Kitware/VTK.git
    cd VTK
    git checkout v9.0.1
    mkdir build
    cd build
    export ospray_DIR=../../ospray-1.8.5/lib/cmake/ospray-1.8.5
    cmake .. -DVTK_MODULE_ENABLE_VTK_RenderingRayTracing=YES
    cmake --build . --config Release --parallel 64
    
    # Install application.
    cd ../../offline_ray_tracer
    mkdir build
    cd build
    export VTK_DIR=../../../dependencies/VTK/build
    cmake ..
    cmake --build . --clean-first --config Release --parallel 64