diff options
Diffstat (limited to 'plugins/Watrack/make.bat')
-rw-r--r-- | plugins/Watrack/make.bat | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/Watrack/make.bat b/plugins/Watrack/make.bat new file mode 100644 index 0000000000..cfaf1df3e1 --- /dev/null +++ b/plugins/Watrack/make.bat @@ -0,0 +1,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
+)
|