-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrebar.config
More file actions
31 lines (24 loc) · 820 Bytes
/
rebar.config
File metadata and controls
31 lines (24 loc) · 820 Bytes
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
%% Artifacts are files generated by other tools (or plugins) and whose
%% presence is necessary for a build to be considered successful
{artifacts, ["priv/libargon2.so.1"]}.
{erl_opts, [debug_info, {i, ["argon2"]}]}.
{deps, []}.
%% Running shell commands before or after a given rebar3 command
{pre_hooks, [
{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd)", compile, "gmake -C c_src"}
]}.
%% Running shell commands after a given rebar3 command
{post_hooks, [
{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd)", clean, "gmake -C c_src clean"}
]}.
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
{ex_doc, [
{source_url, "https://github.com/Pevensie/jargon"},
{extras, ["README.md", "LICENSE"]},
{main, "README.md"}
]}.
{hex, [
{doc, ex_doc}
]}.