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