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
RevLine 
[c458c58]1echo off
[6544020]2setlocal enabledelayedexpansion
[c458c58]3
[683dd55]4cd shaders
5
[aa7707d]6set VULKAN_SDK_PATH=D:\VulkanSDK\1.2.135.0
[c458c58]7
[6544020]8for %%f in (*.vert *.frag) do (
9 set ext=%%~xf
10 set ext=!ext:~1!
[c458c58]11
[6544020]12 %VULKAN_SDK_PATH%\Bin\glslangValidator.exe -V %%f -o %%~nf-!ext!.spv
[683dd55]13)
14
15cd ..
Note: See TracBrowser for help on using the repository browser.