mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 12:14:10 +08:00
2382b3ea8d
Signed-off-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31281>
16 lines
441 B
Bash
16 lines
441 B
Bash
#!/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
|
|
|
|
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
|