summaryrefslogtreecommitdiff
path: root/bin15/pascal.bat
blob: baa57909e591999aa2f279c39f81276930782065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
@echo off

if "%1" == "64" (set fpcpl=64) else (set fpcpl=)

pushd ..\plugins

pushd Actman
call make.bat fpc%fpcpl% 15
if errorlevel 1 goto :Error
popd

pushd mRadio
call make.bat fpc%fpcpl% 15
if errorlevel 1 goto :Error
popd

pushd QuickSearch
call make.bat fpc%fpcpl% 15
if errorlevel 1 goto :Error
popd

pushd Watrack
call make.bat fpc%fpcpl% 15
if errorlevel 1 goto :Error
cd icons
call makeicons.bat fpc%fpcpl% 15
if errorlevel 1 goto :Error
popd

pushd HistoryPlusPlus
call make.bat %1
if errorlevel 1 goto :Error
popd

popd
goto :eof

:Error
echo ============================= FAIL! =============================
pause
exit