Skip to content
Snippets Groups Projects
Select Git revision
  • b16f74651afb3d3b2ed4df638b90349d6a1db9ab
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • 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.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
20 results

IMC_MovementLeftHand.uasset

Blame
  • bootstrap.sh 479 B
    #!/bin/bash
    
    if [ ! -d "build" ]; then mkdir build fi
    cd build
    if [ ! -d "vcpkg" ]; then git clone https://github.com/Microsoft/vcpkg.git fi
    cd vcpkg
    if [ ! -f "vcpkg" ]; then ./bootstrap-vcpkg.sh fi
    
    VCPKG_COMMAND=vcpkg install --recurse
    VCPKG_DEFAULT_TRIPLET=x64-linux
    # Add your library ports here. 
    $VCPKG_COMMAND boost[mpi] catch2
    cd ..
    
    cmake -Ax64 -DCMAKE_TOOLCHAIN_FILE=./vcpkg/scripts/buildsystems/vcpkg.cmake ..
    cmake --build . --target ALL_BUILD --config Release
    cd ..