Files
QTradeProgram/include/Proto/generate_python.bat

7 lines
121 B
Batchfile
Raw Permalink Normal View History

2025-08-15 15:57:31 +08:00
@echo off
chcp 65001
for /r %~dp0 %%h in (*.proto) do (
echo 转换:%%h
protoc.exe -I=%~dp0 --cpp_out=%~dp0 %%h
)
pause