Skip to content

Commit

Permalink
feat: support c++ targets (#60)
Browse files Browse the repository at this point in the history
* feat: support c++ targets

* fix: compile all protos under ./proto

* chore: Apply suggestions from code review

---------

Co-authored-by: Yingwen <realevenyag@gmail.com>
  • Loading branch information
v0y4g3r and evenyag committed Jul 11, 2023
1 parent 53d0a7c commit 7de3f31
Show file tree
Hide file tree
Showing 46 changed files with 149,701 additions and 7 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

BUILDER_CONTAINER=namely/protoc-all:1.51_1

all: rust go java
all: rust go java cpp

rust:
cargo build
Expand All @@ -19,3 +19,8 @@ java:
docker run -t -w /greptime-proto \
--entrypoint ./scripts/generate-java.sh \
-v ${PWD}:/greptime-proto ${BUILDER_CONTAINER}

cpp:
docker run -t -w /greptime-proto \
--entrypoint ./scripts/generate-cpp.sh \
-v ${PWD}:/greptime-proto ${BUILDER_CONTAINER}
1,870 changes: 1,870 additions & 0 deletions c++/greptime/v1/column.pb.cc

Large diffs are not rendered by default.

Loading

0 comments on commit 7de3f31

Please sign in to comment.