1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 12:40:36 +00:00

Add .ci/bootstrap.sh

This commit is contained in:
Luke Ceddia 2020-01-03 22:43:20 +11:00
parent 1e395ee3c5
commit 23b1f74b19

28
.ci/boostrap.sh Executable file
View file

@ -0,0 +1,28 @@
#!/bin/bash
###### Part 1: Build old QB64 ######
com_build() {
cd internal/c/$1/os/lnx
echo -n "Building $2..."
./setup_build.sh
if [ $? -ne 0 ]; then
echo "$2 build failed."
exit 1
fi
echo "Done"
cd - > /dev/null
}
com_build "libqb" "libQB"
com_build "parts/video/font/ttf" "FreeType"
com_build "parts/core" "FreeGLUT"
cp -r internal/source/* internal/temp/
cd internal/c
echo -n "Bootstrapping QB64..."
g++ $NOPIE -w qbx.cpp libqb/os/lnx/libqb_setup.o parts/video/font/ttf/os/lnx/src.o parts/core/os/lnx/src.a -lGL -lGLU -lX11 -lcurses -lpthread -ldl -lrt -D FREEGLUT_STATIC -DDEPENDENCY_USER_MODS -o ../../qb64_bootstrap
if [ $? -ne 0 ]; then
echo "QB64 bootstrap failed"
exit 1
fi
echo "Done"