新协议脚本

master_huanxiang
lvxinran 2020-12-17 10:13:58 +08:00
parent 3329b730d6
commit 4b343fbe62
1 changed files with 13 additions and 0 deletions

13
build-java4(1).bat 100644
View File

@ -0,0 +1,13 @@
@echo off
set protoExe=D:\jieling_protocol\tools\protoc-2.5.0-win32\protoc.exe
set protoOutG=D:\jieling_num2\gamecommon\src\main\java
cd D:\jieling_protocol\protos
set cdy=%cd%
for /r %%i in (*.proto)do (
echo %%i===============
%protoExe% --proto_path=%cd% --java_out=%protoOutG% %%i
)
pause