aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-01-28 16:56:02 -0500
committerAlee <Alee14498@gmail.com>2019-01-28 16:56:02 -0500
commit62663f00aebe7a8fd85f3f7f8e412555a52f2876 (patch)
treef839aeb26eaaf7914defd6143cc228b0d4a86424 /build.bat
parenta63c17bd09ed3b677a06d0aed7a933dea46c51d8 (diff)
downloadProject-Xeon-62663f00aebe7a8fd85f3f7f8e412555a52f2876.tar.gz
Project-Xeon-62663f00aebe7a8fd85f3f7f8e412555a52f2876.tar.bz2
Project-Xeon-62663f00aebe7a8fd85f3f7f8e412555a52f2876.zip
renamed bat to cmd
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat26
1 files changed, 0 insertions, 26 deletions
diff --git a/build.bat b/build.bat
deleted file mode 100644
index cd0a0d2..0000000
--- a/build.bat
+++ /dev/null
@@ -1,26 +0,0 @@
-@echo off
-title Building C++ Program
-echo Building Program...
-echo Shell: CMD
-:findmingw
-set mingwPath=0
-if exist "C:\MinGW" (
- set "mingwPath=C:\MinGW"
-)
-if "%mingwPath%"=="0" (
- title Building C++ Program - Failed
- echo MinGW could not be found. Please make sure that MinGW is installed.
- pause>nul
- exit
-)
-if exist out (
-echo Skipping making the "out" folder...
-) else (
-mkdir out
-echo Created the "out" folder..
-)
-g++ --version
-g++ -g main.cpp -o out/game.exe
-title Building C++ Program - Success
-echo Building Complete!
-pause>nul \ No newline at end of file