blob: fe3604b963f45becba90638f32dbf762fe105f37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
rem @echo off
if /i '%1' == 'fpc' (
set OUTDIR="..\..\..\bin10\Release\Icons"
set FPCBIN=fpc.exe
) else if /i '%1' == 'fpc64' (
set OUTDIR="..\..\..\bin10\Release64\Icons"
set FPCBIN=ppcrossx64.exe
)
if not exist %OUTDIR% mkdir %OUTDIR%
call make buttons
call make icons
move /Y Tasm\Watrack_*.dll %Outdir%
|