31 lines
726 B
Erlang
31 lines
726 B
Erlang
{erl_opts, [debug_info]}.
|
|
{deps, [proper]}.
|
|
|
|
{profiles, [{test, [{erl_opts,[debug_info]}
|
|
,{deps, [proper]}
|
|
]}
|
|
,{test_hipe, [{erl_opts,[{native, {hipe,o3}}
|
|
,{d, 'NATIVE'}
|
|
, debug_info]}
|
|
,{deps, [proper]}
|
|
]}
|
|
,{prod, [{erl_opts, [no_debug_info, warnings_as_errors]}
|
|
]}
|
|
]
|
|
}.
|
|
|
|
{edoc_opts,
|
|
[{preprocess, true}
|
|
,{private, true}
|
|
,{new, true}
|
|
,{todo, true}
|
|
,{report_missing_types, true}
|
|
,{link_predefined_types, true}
|
|
,{includes, ["include"]}
|
|
]}.
|
|
|
|
{shell, [
|
|
% {config, "config/sys.config"},
|
|
{apps, [berty]}
|
|
]}.
|