mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2026-01-04 02:32:27 +00:00
Remove V2I, V3I, V4I (and style changes) Totally useless. Add update tool, update docs Tweak docs Create ci.yml Big style pass Maybe fix CI on Windows Report coverage errors Fix a missing coverage case Try setting up MSVC another way Update readmes Fix remaining use of the name UpdateTool
13 lines
519 B
Batchfile
13 lines
519 B
Batchfile
@REM Batch script to run update_hmm.exe on all your code files.
|
|
@REM Example:
|
|
@REM "update_hmm_all.bat Code\Project\" -> Recursively update all files/folders in .\Code\Project\
|
|
|
|
for /r %1 %%v in (*.c) do update_hmm.exe "%%v"
|
|
for /r %1 %%v in (*.h) do update_hmm.exe "%%v"
|
|
for /r %1 %%v in (*.cpp) do update_hmm.exe "%%v"
|
|
for /r %1 %%v in (*.hpp) do update_hmm.exe "%%v"
|
|
|
|
@REM @REM Uncomment for sokol-samples
|
|
@REM for /r %1 %%v in (*.glsl) do update_hmm.exe "%%v"
|
|
@REM for /r %1 %%v in (*.hlsl) do update_hmm.exe "%%v"
|