summaryrefslogtreecommitdiff
path: root/plugins/mRadio/make.bat
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-09 18:32:29 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-09 18:32:29 +0000
commit72b525d697709532a4e2256607de3a7bdaa3066c (patch)
tree77289b0e99279dbf76a4b809db9569f0ab00deff /plugins/mRadio/make.bat
parentc2d4724cd7f38ecdf0c207e10b89e18beb07e726 (diff)
single config for FPC
git-svn-id: http://svn.miranda-ng.org/main/trunk@1847 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/mRadio/make.bat')
-rw-r--r--plugins/mRadio/make.bat17
1 files changed, 8 insertions, 9 deletions
diff --git a/plugins/mRadio/make.bat b/plugins/mRadio/make.bat
index dc7ebf7fe4..dd8fca64a6 100644
--- a/plugins/mRadio/make.bat
+++ b/plugins/mRadio/make.bat
@@ -1,21 +1,20 @@
-rem @echo off
+@echo off
if /i '%1' == 'fpc' (
set OUTDIR="..\..\bin10\Release\Plugins"
+ set FPCBIN=fpc.exe
) else if /i '%1' == 'fpc64' (
set OUTDIR="..\..\bin10\Release64\Plugins"
+ set FPCBIN=ppcrossx64.exe
)
+set PROJECT=mRadio
+
if not exist %OUTDIR% mkdir %OUTDIR%
md tmp
-set myopts=-O3 -Xs -Sd -dMiranda -FE.\tmp -FU.\tmp -FE%OUTDIR% -Fi..\Utils.pas -Fi..\ExternalAPI\delphi -Fu..\Utils.pas -Fu..\..\include\delphi -Fu..\ExternalAPI\delphi -Fu..\Libs
-set dprname=mRadio.dpr
rem brcc32.exe mradio.rc -fomradio.res
-if /i '%1' == 'fpc' (
- fpc.exe %myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
-) else if /i '%1' == 'fpc64' (
- ppcrossx64.exe %myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
-)
+%FPCBIN% @..\Utils.pas\fpc.cfg %PROJECT%.dpr %2 %3 %4 %5 %6 %7 %8 %9
+move .\tmp\%PROJECT%.dll %OUTDIR%
del /Q tmp\*
-rd tmp \ No newline at end of file
+rd tmp