From 89345a31682ed70cfbfc4b6c1a5f699f9bf5bd94 Mon Sep 17 00:00:00 2001 From: anulax1225 Date: Sun, 21 Jan 2024 22:46:12 +0100 Subject: [PATCH] Removed build --- build | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100755 build diff --git a/build b/build deleted file mode 100755 index c95c0e2..0000000 --- a/build +++ /dev/null @@ -1,45 +0,0 @@ -clear -echo ================== -echo [BUILDING PROJECT] -echo ================== - -if [ -z ${clearbin} ]; then - clearbin=0 -fi -if [ -z ${autoexec} ]; then - autoexec=0 -fi - -if [ 1 -eq ${clearbin} ]; then - echo Clearing bin/bin-int dirs - rm -rf bin bin-int -else - echo Caching bin/bin-int dirs -fi - -premake5 gmake -make $1 -echo ================ -echo [FINISHED BUILD] -echo ================ -if [ 1 -eq ${autoexec} ]; then - config=$1 - if [ -z "$config" ]; then - config="config=debug" - fi - if [ "config=debug" == "$config" ]; then - echo - echo ============== - echo [STARTING APP] - echo ============== - echo Config: Debug - bin/linux-x86_64-Debug/sandbox/sandbox - elif [ "config=release" == "$config" ]; then - echo [STARTING APP] - echo [Config: Release] - bin/linux-x86_64-Release/sandbox/sandbox - else - echo [Aborted Launch] - echo [Config Unknown] - fi -fi \ No newline at end of file