added glad generator and a glad runtime
This commit is contained in:
parent
2017f6195e
commit
ac18a84a9c
62 changed files with 32373 additions and 10 deletions
35
tools/glad-0.1.14a0/utility/updatesub.sh
Executable file
35
tools/glad-0.1.14a0/utility/updatesub.sh
Executable file
|
@ -0,0 +1,35 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
git checkout master
|
||||
./utility/generateall.sh
|
||||
|
||||
echo "Updating C"
|
||||
git checkout c
|
||||
git rm -rf include
|
||||
git rm -rf src
|
||||
mv build/include include/
|
||||
mv build/src src/
|
||||
git add --all include
|
||||
git add --all src
|
||||
git commit -am "automatically updated"
|
||||
git push origin c:c
|
||||
|
||||
echo "Updating D"
|
||||
git checkout d
|
||||
git rm -rf glad
|
||||
mv build/glad glad/
|
||||
git add --all glad
|
||||
git commit -am "automatically updated"
|
||||
git push origin d:d
|
||||
|
||||
echo "Updating Volt"
|
||||
git checkout volt
|
||||
git rm -rf amp
|
||||
mv build/amp amp/
|
||||
git add --all amp
|
||||
git commit -am "automatically updated"
|
||||
git push origin volt:volt
|
||||
|
||||
git checkout master
|
Loading…
Add table
Add a link
Reference in a new issue