Edit

IABSD.fr/xenocara/lib/mesa/.gitlab-ci/container/build-directx-headers.sh

Branch :

  • Show log

    Commit

  • Author : jsg
    Date : 2025-06-05 11:23:11
    Hash : 67d6f117
    Message : Import Mesa 25.0.7

  • lib/mesa/.gitlab-ci/container/build-directx-headers.sh
  • #!/usr/bin/env bash
    # shellcheck disable=SC2086 # we want word splitting
    
    # When changing this file, you need to bump the following
    # .gitlab-ci/image-tags.yml tags:
    # DEBIAN_BUILD_TAG
    
    set -uex
    
    uncollapsed_section_start directx-headers "Building directx-headers"
    
    git clone https://github.com/microsoft/DirectX-Headers -b v1.614.1 --depth 1
    pushd DirectX-Headers
    meson setup build --backend=ninja --buildtype=release -Dbuild-test=false ${EXTRA_MESON_ARGS:-}
    meson install -C build
    popd
    rm -rf DirectX-Headers
    
    section_end directx-headers