fpctest.bat
来自「East make Tray Icon in delphi」· Batch 代码 · 共 14 行
BAT
14 行
@echo Free Pascal Compiler test...
@echo For error messages, see fpctest.err.
@echo off
@if "%1"=="" goto usage
@if not exist %1. goto invpath
@del fpctest.err
@for %%f in (common\Jcl*.pas windows\Jcl*.pas) do make file=%%f fpc=%1 -fMakefile.fpc
@goto exit
:invpath
@echo invalid path "%1"
@goto exit
:usage
@echo usage: fpctest ^<path to fpc installation^>
:exit
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?