configwin.bat

来自「QCA的OPENSSL模块」· Batch 代码 · 共 57 行

BAT
57
字号
@echo offREM write conf_win.priif "%1"=="rd" goto debug_and_releaseif "%1"=="r" goto releaseif "%1"=="d" goto debugif "%1"=="rds" goto debug_and_release_staticif "%1"=="rs" goto release_staticif "%1"=="ds" goto debug_staticgoto usage:usageecho usage: configwin [mode]echo modes:echo   rd          release and debug, dynamicecho   r           release, dynamicecho   d           debug, dynamicecho   rds         release and debug, staticecho   rs          release staticecho   ds          debug staticgoto end:debug_and_releaseecho Configuring for release and debug, dynamicecho CONFIG += debug_and_release build_all > conf_win.prigoto done:releaseecho Configuring for release, dynamicecho CONFIG += release > conf_win.prigoto done:debugecho Configuring for debug, dynamicecho CONFIG += debug > conf_win.prigoto done:debug_and_release_staticecho Configuring for release and debug, staticecho CONFIG += debug_and_release build_all staticlib > conf_win.prigoto done:release_staticecho Configuring for release, staticecho CONFIG += release staticlib > conf_win.prigoto done:debug_staticecho Configuring for debug, staticecho CONFIG += debug staticlib > conf_win.prigoto done:doneecho Wrote conf_win.pri:end

⌨️ 快捷键说明

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