blob: cfaf1df3e18c6643419d922dc41e17a430a45c84 (
plain)
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
|
@echo off
set myopts=-dMiranda
set dprname=watrack.dpr
..\delphi\brcc32.exe res\watrack.rc -fores\watrack.res
..\delphi\brcc32.exe lastfm\lastfm.rc -folastfm\lastfm.res
..\delphi\brcc32.exe myshows\myshows.rc -fomyshows\myshows.res
..\delphi\brcc32.exe players\mradio.rc -foplayers\mradio.res
..\delphi\brcc32.exe kolframe\frm.rc -fokolframe\frm.res
..\delphi\brcc32.exe popup\popup.rc -fopopup\popup.res
..\delphi\brcc32.exe proto\proto.rc -foproto\proto.res
..\delphi\brcc32.exe stat\stat.rc -fostat\stat.res
..\delphi\brcc32.exe status\status.rc -fostatus\status.res
..\delphi\brcc32.exe templates\templates.rc -fotemplates\templates.res
if /i '%1' == 'fpc' (
..\FPC\bin\fpc.exe %myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
) else if /i '%1' == 'fpc64' (
..\FPC\bin64\ppcrossx64.exe %myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
) else if /i '%1' == 'xe2' (
..\XE2\BIN\dcc32.exe%myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
) else if /i '%1' == 'xe64' (
..\XE2\BIN\dcc64.exe %myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
) else (
..\delphi\dcc32 -b -dKOL_MCK -dUNICODE_CTRLS %myopts% %dprname% %1 %2 %3 %4 %5 %6 %7 %8 %9
)
|