-
Notifications
You must be signed in to change notification settings - Fork 0
/
windows
executable file
·59 lines (51 loc) · 1.81 KB
/
windows
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
DIR=$(dirname "$0")
clear
ANSI_ART=$(cat <<EOF
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[0;m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
\e[48;5;32m \e[0;m \e[48;5;32m \e[0;m
EOF
)
printf "$ANSI_ART\n"
cd $DIR
# Use find to locate the .xcodeproj file
xcodeproj_file=$(find . -name "*.xcodeproj" -print -quit)
# Check if a .xcodeproj file was found
if [ -n "$xcodeproj_file" ]; then
xcodeproj_name=$(basename "$xcodeproj_file" .xcodeproj)
else
echo "No .xcodeproj file found."
read
# Close the Terminal window
osascript -e 'tell application "Terminal" to close window 1' & exit
fi
# Compiling Code...
if [ ! -d "bin" ]; then
mkdir bin
fi
if [ ! -d "bin/windows" ]; then
mkdir bin/windows
fi
if [ ! -d "bin/windows/x86_64" ]; then
mkdir bin/windows/x86_64
fi
if [ ! -d "bin/windows/i386" ]; then
mkdir bin/windows/i386
fi
echo "Compiling Code..."
x86_64-w64-mingw32-g++ -o bin/windows/x86_64/$xcodeproj_name.exe src/*.cpp -static -s
i686-w64-mingw32-g++ -o bin/windows/i386/$xcodeproj_name.exe src/*.cpp -static -s
zip windows.zip bin/windows/* -r -x "*/.DS_Store"
# Close the Terminal window
osascript -e 'tell application "Terminal" to close window 1' & exit