mirror of
https://github.com/correl/rebar.git
synced 2024-11-24 03:00:14 +00:00
bf2b3e2468
proto_opts config option contains the compiler directive that defines which proto compiler to use, also contains a src_dirs entry that defines a list of locations for the .proto files to be processed. Add integration test that compiles .proto files from src and from proto directory specified in separate rebar config files
19 lines
266 B
Protocol Buffer
19 lines
266 B
Protocol Buffer
// -*- c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
// ex: ts=4 sw=4 et
|
|
|
|
package test3;
|
|
|
|
service test3
|
|
{
|
|
rpc testRpc3(RPC_INPUT3) returns (RPC_OUTPUT3);
|
|
}
|
|
|
|
message RPC_INPUT3
|
|
{
|
|
optional string str = 1;
|
|
}
|
|
|
|
message RPC_OUTPUT3
|
|
{
|
|
optional string str = 1;
|
|
}
|