diff options
Diffstat (limited to 'plugins/mRadio/make.bat')
-rw-r--r-- | plugins/mRadio/make.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mRadio/make.bat b/plugins/mRadio/make.bat index 2917577c4a..1bc4a56588 100644 --- a/plugins/mRadio/make.bat +++ b/plugins/mRadio/make.bat @@ -1,9 +1,9 @@ @echo off
if /i '%1' == 'fpc' (
- set OUTDIR="..\..\bin10\Release\Plugins"
+ set OUTDIR="..\..\bin%2\Release\Plugins"
set FPCBIN=fpc.exe
) else if /i '%1' == 'fpc64' (
- set OUTDIR="..\..\bin10\Release64\Plugins"
+ set OUTDIR="..\..\bin%2\Release64\Plugins"
set FPCBIN=ppcrossx64.exe
)
set PROJECT=mRadio
@@ -13,7 +13,7 @@ md tmp rem brcc32.exe mradio.rc -fomradio.res
-%FPCBIN% @..\..\plugins\Utils.pas\fpc.cfg %PROJECT%.dpr %2 %3 %4 %5 %6 %7 %8 %9
+%FPCBIN% @..\..\plugins\Utils.pas\fpc.cfg %PROJECT%.dpr %3 %4 %5 %6 %7 %8 %9
move .\tmp\%PROJECT%.dll %OUTDIR%
del /Q tmp\*
|