rtengine/scripts/download_dxc.bat
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

18 lines
324 B
Batchfile

@echo off
REM Wrapper around the powershell script
SETLOCAL
IF EXIST scripts\download_dxc.ps1 GOTO doit
IF EXIST download_dxc.ps1 GOTO goup
ECHO Failed to find download_dxc.ps1; you are probably running this script from an unexpected directory.
:goup
cd ..
:doit
powershell.exe -File scripts\download_dxc.ps1
ENDLOCAL