-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrebar.config
34 lines (29 loc) · 830 Bytes
/
rebar.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
{pre_hooks, [{"(linux|darwin)", compile, "make compile"}]}.
{post_hooks, [{"(linux|darwin)", clean, "make clean"}]}.
{artifacts, ["priv/erlxml_nif.so"]}.
{project_plugins, [rebar3_hex]}.
{erl_opts, [
warn_unused_vars,
warn_shadow_vars,
warn_unused_import,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
warn_obsolete_guard,
strict_validation,
warn_export_vars,
warn_exported_vars,
warn_export_all,
warnings_as_errors
]}.
{cover_enabled, false}.
{profiles, [
{bench, [
{src_dirs, ["src", "benchmark"]},
{deps, [
{fast_xml, ".*", {git, "https://github.com/processone/fast_xml.git", {tag, "1.1.55"}}},
{exml, ".*", {git, "https://github.com/esl/exml.git", {tag, "3.4.1"}}}
]}
]}
]}.