您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
14 行
430 B
14 行
430 B
@echo off
|
|
set current_dir=%~dp0
|
|
set runtime_mode=release
|
|
set engine_path=%~dp0
|
|
set vs_path="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community"
|
|
|
|
:GETOPTS
|
|
if /I "%1" == "-m" set runtime_mode=%2 & shift
|
|
if /I "%1" == "-r" set engine_path=%2 & shift
|
|
if /I "%1" == "-v" set vs_path=%2 & shift
|
|
shift
|
|
if not "%1" == "" goto GETOPTS
|
|
|
|
cmd /k python3 lib_build.py -m %runtime_mode% -r %engine_path% -p windows -v %vs_path%
|