Skip to content
This repository was archived by the owner on Sep 7, 2022. It is now read-only.

Commit 3969caf

Browse files
committed
Create lib_build_win.bat
1 parent ff4be59 commit 3969caf

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

engine/Scripts/lib_build_win.bat

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@echo off
2+
set current_dir=%~dp0
3+
set runtime_mode=release
4+
set engine_path=%~dp0
5+
set vs_path="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community"
6+
7+
:GETOPTS
8+
if /I "%1" == "-m" set runtime_mode=%2 & shift
9+
if /I "%1" == "-r" set engine_path=%2 & shift
10+
if /I "%1" == "-v" set vs_path=%2 & shift
11+
shift
12+
if not "%1" == "" goto GETOPTS
13+
14+
cmd /k python3 lib_build.py -m %runtime_mode% -r %engine_path% -p windows -v %vs_path%

0 commit comments

Comments
 (0)