aboutsummaryrefslogtreecommitdiff
path: root/build.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd25
1 files changed, 25 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd
new file mode 100644
index 0000000..5595995
--- /dev/null
+++ b/build.cmd
@@ -0,0 +1,25 @@
+@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
+echo Building Complete!
+pause>nul \ No newline at end of file