forked from dergraf/plumtree
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrebar.config
17 lines (14 loc) · 868 Bytes
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{erl_opts, [warnings_as_errors, debug_info, {parse_transform},
{platform_define, "20|21|22|23|24|25|26|27", nowarn_gen_fsm}]}.
{deps, [
{riak_dt, {git, "git://github.com/basho/riak_dt.git", {tag, "2.1.0"}}},
{eleveldb, {git, "git://github.com/erlio/eleveldb.git", {branch, "develop"}}},
%% adding edown at the above 'sext' to be able to build on Erlang >= 18
{edown, {git, "git://github.com/uwiger/edown.git", {tag, "0.7"}}},
{sext, {git, "git://github.com/uwiger/sext.git", {tag, "1.4.0"}}},
{gen_server2, {git, "http://github.com/erlio/gen_server2.git", {branch, "master"}}}
]}.
{overrides, [{override, sext, [{src_dirs, ["src"]}]}]}.
{dialyzer_base_plt_apps, [kernel, stdlib, erts, sasl, eunit, syntax_tools, compiler, crypto]}.
{xref_checks, [undefined_function_calls]}.
{cover_enabled, true}.