blob: e99f3a04cf48d8198aed55d93348bd8e752f6cc5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
echo 'Not working... Sorry :('
<<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
|