source: opengl-game/compile.bat@ e8445f0

feature/imgui-sdl
Last change on this file since e8445f0 was 681dbe8, checked in by Dmitry Portnoy <dportnoy@…>, 4 years ago

Update compile.bat to use the existing VULKAN_SDK environment variable

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