mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
144cb8c156
exercises rebar/gpb integration The bulk of these tests are written by Luis Rascão, hence he is the author of this commit. As the committer, I have cherry-picked his two commits 4c87bcd and ebb8182, from the feature/support_gpb_protobuf branch in the git://github.com/lrascao/rebar repo, and have slightly adapted it to fit this pluggable-proto-compilers-gpb branch. Update the THANKS file
18 lines
381 B
Erlang
18 lines
381 B
Erlang
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
|
%% ex: ts=4 sw=4 ft=erlang et
|
|
|
|
{erl_opts,
|
|
[
|
|
{i, "deps/gpb/include"},
|
|
{platform_define, "R13|R14", 'NO_CALLBACK_ATTRIBUTE'}
|
|
]}.
|
|
|
|
{deps,
|
|
[
|
|
{gpb, [], {git, "git://github.com/tomas-abrahamsson/gpb",
|
|
{branch, "master"}}}
|
|
]}.
|
|
|
|
{proto_compiler, gpb}.
|
|
|
|
{gpb_opts, [{module_name_suffix, "_gpb"}]}.
|