17 lines
673 B
Batchfile
17 lines
673 B
Batchfile
@echo off
|
|
|
|
set PROJECT_ROOT=.\
|
|
|
|
set PROJECT_ROOT=.
|
|
|
|
set SRC=%PROJECT_ROOT%\src\pb\proto
|
|
set TAR=%PROJECT_ROOT%\src\pb\js
|
|
|
|
protoc --proto_path=%SRC% --js_out=import_style=commonjs,binary:%TAR%\. %SRC%\*.proto
|
|
protoc --proto_path=%SRC% --js_out=import_style=commonjs,binary:%TAR%\. %SRC%\notify\*.proto
|
|
protoc --proto_path=%SRC% --js_out=import_style=commonjs,binary:%TAR%\. %SRC%\user\*.proto
|
|
protoc --proto_path=%SRC% --js_out=import_style=commonjs,binary:%TAR%\. %SRC%\friend\*.proto
|
|
protoc --proto_path=%SRC% --js_out=import_style=commonjs,binary:%TAR%\. %SRC%\pack\*.proto
|
|
protoc --proto_path=%SRC% --js_out=import_style=commonjs,binary:%TAR%\. %SRC%\mail\*.proto
|
|
|
|
pause |