Initial structure

This commit is contained in:
2015-09-04 10:02:06 +02:00
commit 98e363eda6
457 changed files with 127943 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
for i in $(find $1 -name '*.h' -or -name '*.cpp' -or -name '*.glsl')
do
if ! grep -q 'Copyright' "$i"
then
cat COPYING.NOTICE "$i" >"$i.new" && mv "$i.new" "$i"
fi
done