-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
37 lines (32 loc) · 846 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
35
36
37
% -*- mode: erlang -*-
{minimum_otp_vsn, "17"}.
{cover_enabled, true}.
{cover_print_enabled, true}.
{dialyzer, [
{warnings, [race_conditions,
error_handling,
unmatched_returns,
underspecs,
no_match]},
{base_plt_location, ".depsolver_plt"},
{base_plt_apps, [kernel, stdlib, erts, crypto, hipe, sasl, public_key]}
]}.
{deps, [
{epocxy, ".*",
{git, "git://github.com/duomark/epocxy.git", {tag, "0.9.8e"}}}
]}.
{relx, [
{release, {alpha, "v0.1.0"}, [libemp]}
]}.
{profiles, [
{prod, [
{erl_opts, [no_debug_info, warnings_as_errors]},
{relx, [{dev_mode, false}, {include_erts, true}]}
]},
{native, [
{erl_opts, [{native, o3}, inline]}
]},
{test, [
{erl_opts, [debug_info, {d, 'DEBUG'}]}
]}
]}.