-
Notifications
You must be signed in to change notification settings - Fork 4
/
rebar.config
65 lines (54 loc) · 1.42 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{erl_opts, [
warn_bif_clash,
warn_deprecated_function,
warn_export_all,
warn_export_vars,
warn_exported_vars,
warn_format,
warn_obsolete_guard,
warn_shadow_vars,
warn_unused_function,
warn_unused_record,
warn_unused_vars,
warning_as_errors,
debug_info
]}.
{minimum_otp_vsn, "18.0"}.
{pre_hooks, [
{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd)", compile, "gmake -C c_src"}
]}.
{post_hooks, [
{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd)", clean, "gmake -C c_src clean"}
]}.
{profiles, [
{test, [
{deps, [
{proper, "1.1.1-beta"}
]},
{eunit_opts, [
verbose,
{report, {eunit_progress, [colored, profile]}}
]}
]},
{docs, [
{deps, [
{edown, {git, "https://github.com/uwiger/edown.git", {branch, "master"}}}
]},
{edoc_opts, [
{doclet, edown_doclet},
{top_level_readme, {"./README.md", "https://lab.baconsvin.org/ahf/sphincs"}},
{todo, true},
{report_missing_types, true},
{source_path, ["src"]},
{stylesheet, ""},
{image, ""},
{app_default, "http://www.erlang.org/doc/man"}
]}
]}
]}.
{plugins, [
{rebar3_proper, {git, "https://github.com/ferd/rebar3_proper.git", {branch, "master"}}}
]}.
%% vim: set ft=erlang :