mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
7 lines
132 B
Bash
Executable file
7 lines
132 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for f in examples/sokol/*/ ; do
|
|
echo "compiling shaders for $f ...";
|
|
time ./v shader $f;
|
|
echo "done";
|
|
done;
|