forked from basho/cuttlefish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
23 lines (17 loc) · 835 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
{require_otp_vsn, "R16|17"}.
{erl_opts, [warnings_as_errors, {parse_transform, lager_transform}, debug_info, warn_untyped_record]}.
{eunit_opts, [verbose]}.
{cover_enabled, true}.
{escript_emu_args, "%%! -escript main cuttlefish_escript -smp disable +A 0\n"}.
{escript_incl_apps, [goldrush, getopt, lager]}.
{xref_checks, []}.
{xref_queries, [{"(XC - UC) || (XU - X - B - \"(rebar.*|mustache)\" : Mod)", []}]}.
{deps, [
{getopt, ".*", {git, "git://github.com/jrobhoward/getopt.git", {branch, "SCADAbase"}}},
{lager, "2.0.3", {git, "git://github.com/jrobhoward/lager.git", {branch, "SCADAbase"}}},
{neotoma, "1.7.2", {git, "git://github.com/jrobhoward/neotoma.git", {branch, "SCADAbase"}}}
]}.
{post_hooks, [
{"-win32", compile, "rebar escriptize"},
{"^((?!-win32).)*$", compile, "./rebar escriptize"}
]}.