Now also compiling lua from source before everything else.
This commit is contained in:
parent
80b03508a5
commit
0483fd995b
12
build.sh
12
build.sh
@ -18,6 +18,18 @@ fi
|
|||||||
currentDir=$(pwd)
|
currentDir=$(pwd)
|
||||||
threads=$(($(nproc)+1))
|
threads=$(($(nproc)+1))
|
||||||
|
|
||||||
|
#building lua
|
||||||
|
|
||||||
|
cd extern/lua/
|
||||||
|
if [[ $1 == "windows" ]]
|
||||||
|
then
|
||||||
|
make mingw
|
||||||
|
else
|
||||||
|
make linux
|
||||||
|
fi
|
||||||
|
cd $currentDir
|
||||||
|
|
||||||
|
|
||||||
#building bullet
|
#building bullet
|
||||||
|
|
||||||
cd extern/bullet/
|
cd extern/bullet/
|
||||||
|
1
extern/lua/src/.gitignore
vendored
1
extern/lua/src/.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
|
*.o
|
||||||
lua
|
lua
|
||||||
luac
|
luac
|
||||||
|
Loading…
Reference in New Issue
Block a user