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 -ex 9 10git clone https://github.com/microsoft/DirectX-Headers -b v1.611.0 --depth 1 11pushd DirectX-Headers 12meson setup build --backend=ninja --buildtype=release -Dbuild-test=false $EXTRA_MESON_ARGS 13meson install -C build 14popd 15rm -rf DirectX-Headers 16