rtengine/scripts/download_dxc.ps1
Kevin Trogant 9670844bb2 Move towards using DXC for compiling shaders
This is recommended by the vulkan documentation.
2024-01-25 23:33:29 +01:00

5 lines
263 B
PowerShell

$file = "dxc_2023_08_14.zip"
Invoke-WebRequest -Uri https://github.com/microsoft/DirectXShaderCompiler/releases/download/v1.7.2308/$file -OutFile contrib\$file
Expand-Archive -LiteralPath contrib\$file -DestinationPath contrib\dxc
Remove-Item -Path contrib\$file