Packages

Replace the ErlangVM with an OS system command

Current section

Files

Jump to
execvp rebar.config
Raw

rebar.config

{erl_opts, [warnings_as_errors]}.
{deps, []}.
{plugins, [rebar3_hex, rebar3_ex_doc]}.
{ex_doc, [
{source_url, <<"https://github.com/bsanyi/execvp">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
{hex, [{doc, ex_doc}]}.
{pre_hooks, [
{compile, "make -C c_src/"}
]}.
{post_hooks, [
{clean, "make -C c_src/ clean"}
]}.