From ade78d183a17c49e74c9a37a53a2d0cd78355248 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjetil=20=C3=98rbekk?= Date: Wed, 11 Apr 2012 15:08:24 +0200 Subject: Add protobuf builder script. --- same/build_protobufs.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 same/build_protobufs.sh 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 \; -- cgit v1.2.3