1#!/usr/bin/env bash 2# shellcheck disable=SC2086 # we want word splitting 3 4# When changing this file, you need to bump the following 5# .gitlab-ci/image-tags.yml tags: 6# DEBIAN_BUILD_TAG 7 8set -uex 9 10uncollapsed_section_start directx-headers "Building directx-headers" 11 12git clone https://github.com/microsoft/DirectX-Headers -b v1.614.1 --depth 1 13pushd DirectX-Headers 14meson setup build --backend=ninja --buildtype=release -Dbuild-test=false ${EXTRA_MESON_ARGS:-} 15meson install -C build 16popd 17rm -rf DirectX-Headers 18 19section_end directx-headers 20