prep.bat
来自「ucgui V3.98 是目前网络上相对较新的ucgui高版本源码啦。有兴趣的可」· Batch 代码 · 共 29 行
BAT
29 行
@ECHO OFF
ECHO Prep.bat: Preparing environment
goto Start
******************************************************************************
*
* File : Prep.bat
* Parameters: None
* Purpose : Sets path and other environment variables as required by tool chain
*
* This file as is uses the Watcom Compile for x86 targets.
* It needs to be modified if a library for a target compiler is
* desired or if the compiler is installed in a different location.
*
******************************************************************************
:START
IF "%_PREP_WATCOM_%" == "_PREP_WATCOM_" GOTO CONT
call C:\Tool\C\watcom\SetVars.bat
Set path=C:\Tool\C\watcom\binnt;C:\Tool\C\watcom\binw;%path%
SET _PREP_WATCOM_=_PREP_WATCOM_
:CONT
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?