This repository has been archived by the owner on Jun 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
make_win_debug.bat
147 lines (123 loc) · 2.19 KB
/
make_win_debug.bat
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@echo off
if not exist "Base" goto EndBase
cd "Base"
qmake "CONFIG+=debug"
mingw32-make
qmake "CONFIG+=debug" BaseStatic.pro
mingw32-make
qmake "CONFIG+=debug"
cd ..
:EndBase
if not exist "Hall" goto EndHall
cd "Hall"
qmake "CONFIG+=debug"
mingw32-make
mingw32-make install
cd ..
:EndHall
if not exist "UpdateHall" goto EndUpdateHall
cd "UpdateHall"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndUpdateHall
if not exist "Blackjack" goto EndBlackjack
cd "Blackjack"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndBlackjack
if not exist "Chaodip" goto EndChaodip
cd "Chaodip"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndChaodip
if not exist "ChineseChess" goto EndChineseChess
cd "ChineseChess"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndChineseChess
if not exist "Chudd" goto EndChudd
cd "Chudd"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndChudd
if not exist "GBMahjong" goto EndGBMahjong
cd "GBMahjong"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndGBMahjong
if not exist "GDMahjong" goto EndGDMahjong
cd "GDMahjong"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndGDMahjong
if not exist "GongZhu" goto EndGongZhu
cd "GongZhu"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndGongZhu
if not exist "Interlink" goto EndInterlink
cd "Interlink"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndInterlink
if not exist "LandBattle" goto EndLandBattle
cd "LandBattle"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndLandBattle
if not exist "LandLord" goto EndLandLord
cd "LandLord"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndLandLord
if not exist "NiuNiu" goto EndNiuNiu
cd "NiuNiu"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndNiuNiu
if not exist "Renju" goto EndRenju
cd "Renju"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndRenju
if not exist "Shisensho" goto EndShisensho
cd "Shisensho"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndShisensho
if not exist "Suoha" goto EndSuoha
cd "Suoha"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndSuoha
if not exist "Upgrade" goto EndUpgrade
cd "Upgrade"
qmake "CONFIG+=debug"
mingw32-make
cd ..
:EndUpgrade
if not exist "Hall" goto EndRemove
cd "Hall"
if not exist "build" goto EndRemove
cd "build"
del *.a /q
del *.prl /q
if not exist "modules" goto EndRemove
cd "modules"
del *.a /q
:EndRemove