📄 buildclean.bat
字号:
@rem buildclean.bat - generates IDE workspace/project files
@rem %1 should be directory in which to perform command
@rem %2 should be command line platform e.g. wins or winscw
@rem %3, optional, should be IDE platform e.g. vc6 or cw_ide or ""
@echo OFF
pushd %1
echo Building %2
echo in %1
call bldmake bldfiles
@rem performs command line build
call abld build %2 udeb
@rem At present wins builds fail because .mbg file not xferred to \epoc32\include,
@rem a reallyclean and rebuild then works.
@rem ONLY NECESSARY IF FAILED TO CLEAN OUT epoc32\include and z\system dirs
@rem if "%2" EQU "wins" call abld reallyclean wins udeb
@rem if "%2" EQU "wins" call abld build wins udeb
if "%3" EQU "cw_ide" goto ide
if "%3" EQU "vc6" goto ide
goto end
:ide
@rem now do equivalent ide
call abld makefile %3
@rem Does not remove all the files that abld produces
@rem in case these are required for another component's build.
:end
popd
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -