mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 04:15:49 -04:00
26 lines
543 B
Bash
Executable File
26 lines
543 B
Bash
Executable File
|
|
#Build
|
|
DIRECTORY="../Binaries/.build"
|
|
if [ ! -d "../Binaries/.build" ]; then
|
|
DIRECTORY="../Binaries/build"
|
|
fi
|
|
if [ -d "$DIRECTORY" ]; then
|
|
cd "$DIRECTORY"
|
|
if [ -f "build.ninha" ]; then
|
|
ninja
|
|
fi
|
|
if [ -f "Makefile" ]; then
|
|
make
|
|
fi
|
|
else
|
|
echo "Unable to find your build directory, just make sure that GD is compiled in Release_Linux"
|
|
fi
|
|
cd ../../GDCpp/scripts/
|
|
sh ./CopyHeadersToGD.sh
|
|
cd ../../scripts
|
|
sh CopyWindowsToLinuxReleaseFiles.sh
|
|
cd ../GDJS/scripts/
|
|
sh ./CopyRuntimeToGD.sh
|
|
cd ../../Binaries/Packaging
|
|
sh ./PackageForUbuntu.sh
|