build.bat

来自「一个很好用的控件」· Batch 代码 · 共 31 行

BAT
31
字号
echo off
@echo Builds all ABC packages for C++ Builder 4,5 and Delphi 4,5,6
@echo The called scripts and dcc.cfg / dcc32.cfg in each build directory
@echo must be edited before use
@echo Results are output to build.log in this directory
@echo --------------------------------------------------------------------- 
@echo Press Ctrl-C to cancel
Pause

del build.log

cd ..\BuildCB4 
call BuildCB4.Bat ..\buildall\build.log

cd ..\BuildCB5 
call BuildCB5.Bat ..\buildall\build.log

cd ..\BuildD4
call BuildD4.Bat ..\buildall\build.log

cd ..\BuildD5
call BuildD5.Bat ..\buildall\build.log

cd ..\BuildD6
call BuildD6.Bat ..\buildall\build.log

cd ..\buildall

@echo Completed
Pause
notepad.exe build.log

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?