From 72b525d697709532a4e2256607de3a7bdaa3066c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 9 Oct 2012 18:32:29 +0000 Subject: single config for FPC git-svn-id: http://svn.miranda-ng.org/main/trunk@1847 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Actman/make.bat | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'plugins/Actman/make.bat') diff --git a/plugins/Actman/make.bat b/plugins/Actman/make.bat index 4b844abeaa..eba7c585c9 100644 --- a/plugins/Actman/make.bat +++ b/plugins/Actman/make.bat @@ -1,24 +1,23 @@ -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=Actman + 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 -set dprname=Actman.dpr rem brcc32.exe %myopts% options.rc -fooptions.res rem brcc32.exe %myopts% hooks\hooks.rc -fohooks\hooks.res rem brcc32.exe %myopts% tasks\tasks.rc -fotasks\tasks.res rem brcc32.exe %myopts% ua\ua.rc -foua\ua.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 -- cgit v1.2.3