summaryrefslogtreecommitdiff
path: root/advanced_opengl/build
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-06-15 16:11:31 +0500
committerpryazha <pryadeiniv@mail.ru>2025-06-15 16:11:31 +0500
commit9d944f26d359e4bc1ffd8e44350b0df9f0935b18 (patch)
tree9759a83a76ab741a587b99f00c2463eafd05d813 /advanced_opengl/build
parentd65ddd07a43d5ffdcf2ddf90d6f86626cf9b92d8 (diff)
something
Diffstat (limited to 'advanced_opengl/build')
-rwxr-xr-xadvanced_opengl/build9
1 files changed, 9 insertions, 0 deletions
diff --git a/advanced_opengl/build b/advanced_opengl/build
new file mode 100755
index 0000000..4829c7d
--- /dev/null
+++ b/advanced_opengl/build
@@ -0,0 +1,9 @@
+#!/bin/sh
+targets=$(ls)
+for target in $targets ; do
+ if [ $target != 'build.sh' ] ; then
+ cd $target
+ ./build.sh
+ cd ..
+ fi
+done