summaryrefslogtreecommitdiff
path: root/plugins/QuickSearch
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/QuickSearch')
-rw-r--r--plugins/QuickSearch/make.bat17
1 files changed, 8 insertions, 9 deletions
diff --git a/plugins/QuickSearch/make.bat b/plugins/QuickSearch/make.bat
index 03fe8963be..ed975f6975 100644
--- a/plugins/QuickSearch/make.bat
+++ b/plugins/QuickSearch/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=QuickSearch
+
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=QuickSearch.dpr
rem brcc32.exe qs.rc -foqs.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