浏览代码

Create lib_build_win.bat

/zgh-build_scripts
guanghuispark 3 年前
当前提交
3780bc6e
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14
      engine/Scripts/lib_build_win.bat

14
engine/Scripts/lib_build_win.bat


@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%
正在加载...
取消
保存