1
0

Import irrlicht 1.8.4 release

This commit is contained in:
Loic Blot
2020-05-16 23:31:28 +02:00
commit 6fe86df4b3
4257 changed files with 1312157 additions and 0 deletions

8
examples/buildAllExamples.sh Executable file
View File

@@ -0,0 +1,8 @@
#! /bin/bash
[ -z $1 ] || TARGET=$1
[ -z $TARGET ] && TARGET=all
for i in [012]* Demo; do
echo "Building $i";
pushd $i && make clean $TARGET;
popd;
done