-
-
Notifications
You must be signed in to change notification settings - Fork 327
/
compil.bat
executable file
·64 lines (49 loc) · 1.75 KB
/
compil.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
@echo off
cls
rem goto SkipOldDelphi
set DCC=c:\progs\delphi5\bin\dcc32.exe
set DelphiVersion=Delphi 5
call compilpil.bat
set DCC=c:\progs\delphi6\bin\dcc32.exe
set DelphiVersion=Delphi 6
call compilpil.bat
:SkipOldDelphi
set DelphiVersion=
set LVCL=LVCL
call compilpil.bat
set LVCL=
set DelphiVersion=
call compilpil.bat
set DCC="c:\progs\CodeGear\RAD Studio\5.0\bin\dcc32.exe"
if not exist %DCC% set DCC="c:\progs\Delphi2007\bin\dcc32.exe"
set DelphiVersion=Delphi 2007
call compilpil.bat
set DCC="c:\progs\Embarcadero\RAD Studio\10.0\bin\dcc32.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE3\bin\dcc32.exe"
set DelphiVersion=Delphi XE3 Win32
call compilpil.bat
set DCC="c:\progs\Embarcadero\RAD Studio\11.0\bin\dcc32.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE4\bin\dcc32.exe"
set DelphiVersion=Delphi XE4 Win32
call compilpil.bat
set DCC="c:\progs\Embarcadero\RAD Studio\11.0\bin\dcc64.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE4\bin\dcc64.exe"
set DelphiVersion=Delphi XE4 Win64
call compilpil.bat
set DCC="c:\progs\Embarcadero\Studio\14.0\bin\dcc32.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE6\bin\dcc32.exe"
set DelphiVersion=Delphi XE6 Win32
call compilpil.bat
set DCC="c:\progs\Embarcadero\Studio\14.0\bin\dcc64.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE6\bin\dcc64.exe"
set DelphiVersion=Delphi XE6 Win64
call compilpil.bat
set DCC="c:\progs\Embarcadero\XE7\bin\fastdcc32.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE7\bin\dcc32.exe"
set DelphiVersion=Delphi XE7 Win32
call compilpil.bat
set DCC="c:\progs\Embarcadero\XE7\bin\fastdcc64.exe"
if not exist %DCC% set DCC="c:\progs\DelphiXE7\bin\dcc64.exe"
set DelphiVersion=Delphi XE7 Win64
call compilpil.bat
pause