Files
orion_greptime_proto/scripts/generate-java.sh
T
Lei, HUANG 7de3f31fd0 feat: support c++ targets (#60)
* feat: support c++ targets

* fix: compile all protos under ./proto

* chore: Apply suggestions from code review

---------

Co-authored-by: Yingwen <realevenyag@gmail.com>
2023-07-11 19:33:39 +08:00

7 lines
171 B
Bash
Executable File

#! /usr/bin/env bash
PROTO_ROOT=./proto
JAVA_OUTPUT=./java/src/main/java/
protoc -I=${PROTO_ROOT} --java_out=${JAVA_OUTPUT} $(find ./proto/ -type f -iname "*.proto")