source: opengl-game/compile.bat@ aa7707d

feature/imgui-sdl
Last change on this file since aa7707d was aa7707d, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago

Update the Vulkan SDK version and get the latest code compiling on Windows

  • Property mode set to 100644
File size: 249 bytes
Line 
1echo off
2setlocal enabledelayedexpansion
3
4cd shaders
5
6set VULKAN_SDK_PATH=D:\VulkanSDK\1.2.135.0
7
8for %%f in (*.vert *.frag) do (
9 set ext=%%~xf
10 set ext=!ext:~1!
11
12 %VULKAN_SDK_PATH%\Bin\glslangValidator.exe -V %%f -o %%~nf-!ext!.spv
13)
14
15cd ..
Note: See TracBrowser for help on using the repository browser.