diff options
author | George Hazan <ghazan@miranda.im> | 2019-04-14 13:56:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-04-14 13:56:55 +0300 |
commit | 31aec878c07125c3ba4e68bc854c5240af0ccdca (patch) | |
tree | 2c4c9acf4ca6495aa48ca66d47c9f7d0f28e0f38 /bin16/pascal.bat | |
parent | 2cf530b43c3d0d725ad67e3210258400076553bb (diff) |
pack of changes for VS2019
Diffstat (limited to 'bin16/pascal.bat')
-rw-r--r-- | bin16/pascal.bat | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/bin16/pascal.bat b/bin16/pascal.bat new file mode 100644 index 0000000000..1dbb959545 --- /dev/null +++ b/bin16/pascal.bat @@ -0,0 +1,41 @@ +@echo off + +if "%1" == "64" (set fpcpl=64) else (set fpcpl=) + +pushd ..\plugins + +pushd Actman +call make.bat fpc%fpcpl% 16 +if errorlevel 1 goto :Error +popd + +pushd mRadio +call make.bat fpc%fpcpl% 16 +if errorlevel 1 goto :Error +popd + +pushd QuickSearch +call make.bat fpc%fpcpl% 16 +if errorlevel 1 goto :Error +popd + +pushd Watrack +call make.bat fpc%fpcpl% 16 +if errorlevel 1 goto :Error +cd icons +call makeicons.bat fpc%fpcpl% 16 +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 |