8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
rm -rf .jai
|
|
|
|
for filename in *.glsl; do
|
|
if [ -f "$filename" ]; then
|
|
./sokol-shdc-mac -i "$filename" -o "./jai/${filename/.glsl/.jai}" -l glsl430:glsl300es:metal_macos -f sokol_jai
|
|
fi
|
|
done
|