GitHub
4 年前
当前提交
7cfe6de7
共有 7 个文件被更改,包括 97 次插入 和 57 次删除
-
55com.unity.uiwidgets/Runtime/Plugins/Android/libUIWidgets.so.meta
-
6engine/Scripts/lib_build.py
-
19engine/Scripts/lib_build_android.sh
-
20engine/Scripts/lib_build_ios.sh
-
20engine/Scripts/lib_build_ios_bitcode.sh
-
20engine/Scripts/lib_build_mac.sh
-
14engine/Scripts/lib_build_win.bat
|
|||
engine_path=$(pwd) |
|||
runtime_mode=release |
|||
|
|||
while getopts ":r:m:" opt |
|||
do |
|||
case $opt in |
|||
r) |
|||
engine_path=$OPTARG # set engine_path, depot_tools and flutter engine folder will be put into this path |
|||
;; |
|||
m) |
|||
runtime_mode=$OPTARG |
|||
;; |
|||
?) |
|||
echo "unknown param" |
|||
exit 1;; |
|||
esac |
|||
done |
|||
|
|||
python3 lib_build.py -r $engine_path -p android -m $runtime_mode |
|
|||
engine_path=$(pwd) |
|||
runtime_mode=release |
|||
|
|||
while getopts ":r:m:" opt |
|||
do |
|||
case $opt in |
|||
r) |
|||
engine_path=$OPTARG # set engine_path, depot_tools and flutter engine folder will be put into this path |
|||
;; |
|||
m) |
|||
runtime_mode=$OPTARG |
|||
;; |
|||
?) |
|||
echo "unknown param" |
|||
exit 1;; |
|||
esac |
|||
done |
|||
|
|||
python3 lib_build.py -r $engine_path -p ios -m $runtime_mode |
|||
|
|
|||
engine_path=$(pwd) |
|||
runtime_mode=release |
|||
|
|||
while getopts ":r:m:" opt |
|||
do |
|||
case $opt in |
|||
r) |
|||
engine_path=$OPTARG # set engine_path, depot_tools and flutter engine folder will be put into this path |
|||
;; |
|||
m) |
|||
runtime_mode=$OPTARG |
|||
;; |
|||
?) |
|||
echo "unknown param" |
|||
exit 1;; |
|||
esac |
|||
done |
|||
|
|||
python3 lib_build.py -r $engine_path -m $runtime_mode -p ios -e |
|||
|
|
|||
engine_path=$(pwd) |
|||
runtime_mode=release |
|||
|
|||
while getopts ":r:m:" opt |
|||
do |
|||
case $opt in |
|||
r) |
|||
engine_path=$OPTARG # set engine_path, depot_tools and flutter engine folder will be put into this path |
|||
;; |
|||
m) |
|||
runtime_mode=$OPTARG |
|||
;; |
|||
?) |
|||
echo "unknown param" |
|||
exit 1;; |
|||
esac |
|||
done |
|||
|
|||
python3 lib_build.py -r $engine_path -p mac -m $runtime_mode |
|||
|
|
|||
@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% |
撰写
预览
正在加载...
取消
保存
Reference in new issue