source: opengl-game/compile.bat@ 34bdf3a

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

Update compile.bat to compile all vertex and fragment shaders

  • Property mode set to 100644
File size: 229 bytes
RevLine 
[c458c58]1echo off
[6544020]2setlocal enabledelayedexpansion
[c458c58]3
4set VULKAN_SDK_PATH=D:\VulkanSDK\1.1.108.0
5
[6544020]6for %%f in (*.vert *.frag) do (
7 set ext=%%~xf
8 set ext=!ext:~1!
[c458c58]9
[6544020]10 %VULKAN_SDK_PATH%\Bin\glslangValidator.exe -V %%f -o %%~nf-!ext!.spv
11)
Note: See TracBrowser for help on using the repository browser.