diff options
author | Kjetil Ørbekk <kjetil.orbekk@gmail.com> | 2012-04-11 15:08:24 +0200 |
---|---|---|
committer | Kjetil Ørbekk <kjetil.orbekk@gmail.com> | 2012-04-11 15:08:24 +0200 |
commit | ade78d183a17c49e74c9a37a53a2d0cd78355248 (patch) | |
tree | 3af7e8818dca7c69232c066e773e2ce5281d7283 | |
parent | a60af7c40268f65cef9d301b311db30f46a2ecf3 (diff) |
Add protobuf builder script.
-rwxr-xr-x | same/build_protobufs.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/same/build_protobufs.sh b/same/build_protobufs.sh new file mode 100755 index 0000000..fd1e2d1 --- /dev/null +++ b/same/build_protobufs.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +find src/test/java -name '*.proto' -exec \ + protoc {} --java_out=src/test/java \; + +find src/main/java -name '*.proto' -exec \ + protoc {} --java_out=src/main/java \; |