diff options
author | watcherhd <watcherhd@gmail.com> | 2017-08-14 14:26:54 +0300 |
---|---|---|
committer | watcherhd <watcherhd@gmail.com> | 2017-08-14 14:27:24 +0300 |
commit | 444f8615792ebdfeb8278a13a2adf27c66783013 (patch) | |
tree | ee2ac8dc95dc1030445c95df9745ac924ac14f8c /tools/build_scripts/bin10/pascal32.bat | |
parent | 6515c04e5e28ff506a93e05f89e755ce22f40999 (diff) |
adding missing files
Diffstat (limited to 'tools/build_scripts/bin10/pascal32.bat')
-rw-r--r-- | tools/build_scripts/bin10/pascal32.bat | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/build_scripts/bin10/pascal32.bat b/tools/build_scripts/bin10/pascal32.bat new file mode 100644 index 0000000000..a04b8cc747 --- /dev/null +++ b/tools/build_scripts/bin10/pascal32.bat @@ -0,0 +1,39 @@ +rem @echo off + +pushd ..\plugins + +pushd Actman +call make.bat fpc 10 +if errorlevel 1 goto :Error +popd + +pushd ImportTXT +call make.bat fpc 10 +if errorlevel 1 goto :Error +popd + +pushd mRadio +call make.bat fpc 10 +if errorlevel 1 goto :Error +popd + +pushd QuickSearch +call make.bat fpc 10 +if errorlevel 1 goto :Error +popd + +pushd Watrack +call make.bat fpc 10 +if errorlevel 1 goto :Error +cd icons +call makeicons.bat fpc 10 +if errorlevel 1 goto :Error +popd + +popd +goto :eof + +:Error +echo ============================= FAIL! ============================= +pause +exit |