-
Notifications
You must be signed in to change notification settings - Fork 4
/
rebar_dev.config
59 lines (46 loc) · 1.29 KB
/
rebar_dev.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%%-*- mode: erlang -*-
{lib_dirs, ["deps"]}.
{src_dirs, ["./src"]}.
{erl_opts,
[{i, "include"},
{i, "deps"},
{src_dirs, ["src"]},
debug_info,
bin_opt_info
]
}.
{cover_enabled, true}.
{edoc_opts, [{preprocess, true}]}.
{erl_opts, [{platform_define, "R15", 'crypto_compat'},
fail_on_warning,
warn_unused_vars,
warn_export_all,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
warn_export_vars,
warn_exported_vars,
%%warn_untyped_record,
% warn_missing_spec,
% strict_validation,
bin_opt_info,
debug_info]}.
{eunit_opts, [
no_tty,
{report, {eunit_progress, [colored, profile]}}
]}.
{erl_first_files, [ "src/cbt_backend.erl"]}.
{deps, [
{snappy, ".*",
{git, "https://github.com/fdmanana/snappy-erlang-nif.git",
{branch, "master"}}},
{lz4, ".*", {git, "git://github.com/krestenkrab/erlang-lz4.git",
{branch, "master"}}},
{eunit_formatters, ".*",
{git, "git://github.com/seancribbs/eunit_formatters",
"master"}}
]}.