This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Public/Proto/ServerInternal/gen_proto.bat

14 lines
254 B
Batchfile

@echo off
if not exist "./gen" (
mkdir "./gen"
)
protoc ^
--proto_path=./sources ^
--go_out=./gen ^
--go-grpc_out=./gen ^
--grpc-gateway_out=./gen ^
--openapiv2_out=./gen ^
./sources/*.proto
xcopy "./gen/common" "../../../Server/common" /E /I /Y /Q