aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: 2c480cbd99aede876de447650968a63585c8957a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
<<COMMENT
echo 'Building Program...'
echo 'Shell: Bash'
if [ -d "out" ] 
then
echo 'Skipping making the "out" directory...'
else
mkdir out
echo 'Created the "out" folder..'
fi
g++ --version
g++ -g main.cpp -o out/game.exe
echo 'Building Complete!'
read -p 'Press any key to finish...'
COMMENT