-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.cmd
41 lines (34 loc) · 1.05 KB
/
build.cmd
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
@echo off
echo ** Building GID in various compiler modes
echo.
echo **** To_PNG - Debug ... tp.exe
del test\to_png.exe
gprbuild -P gid -XGID_Build_Mode=Debug to_png
copy /b test\to_png.exe test\tp.exe
echo.
echo **** To_BMP - Debug ... tb.exe
del test\to_bmp.exe
gprbuild -P gid -XGID_Build_Mode=Debug to_bmp
copy /b test\to_bmp.exe test\tb.exe
echo.
echo **** To_PNG - Fast_but_checked ... tbfc.exe
del test\to_png.exe
gprbuild -P gid -XGID_Build_Mode=Fast_but_checked to_png
copy /b test\to_png.exe test\tpfc.exe
echo.
echo **** To_BMP - Fast_but_checked ... tbfc.exe
del test\to_bmp.exe
gprbuild -P gid -XGID_Build_Mode=Fast_but_checked to_bmp
copy /b test\to_bmp.exe test\tbfc.exe
echo.
echo **** Everything - Fast_unchecked ... tbfu.exe, tpfu.exe
del test\to_png.exe
del test\to_bmp.exe
gprbuild -P gid -XGID_Build_Mode=Fast_unchecked
copy /b test\to_png.exe test\tpfu.exe
copy /b test\to_bmp.exe test\tbfu.exe
echo.
echo **** Smallest ... mini.exe
del test\mini.exe
gprbuild -P gid -XGID_Build_Mode=Smallest mini
pause