mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-09-05 17:58:14 +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
386 B
Bash
13 lines
386 B
Bash
# Bash script to run update_hmm on all your code files.
|
|
# Example:
|
|
# "update_hmm_all Code/Project/" -> Recursively update all files/folders in ./Code/Project/
|
|
echo $1
|
|
for file in "$1"/*.{c,h,cpp,hpp} "$1"/**/*.{c,h,cpp,hpp} ; do
|
|
./update_hmm "$file"
|
|
done
|
|
|
|
# # Uncomment for sokol-samples
|
|
# for file in "$1"/*.{glsl,hlsl} "$1"/**/*.{glsl,hlsl} ; do
|
|
# ./update_hmm "$file"
|
|
# done
|