-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
48 lines (42 loc) · 1.07 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{src_dirs, ["src"]}.
{deps, [
{mysql_client, {git, "git://git.code.sf.net/p/erlmysql/git", {branch, master}}},
{lager, {git, "https://github.com/erlang-lager/lager.git", {branch, "master"}}}
]}.
{erl_opts, [
report,
% warnings_as_errors,
no_debug_info,
{parse_transform, lager_transform}
%% ,{d, 'TEST'}
]}.
{cover_enabled, false}.
{clean_files, ["doc/*"]}.
{edoc_opts, [
{def, [{version, "1.1.0"}]},
{private, false},
{source_path, ["src"]},
{title, "MQTT client/server for Erlang (common library)"},
{overview, "src/overview.edoc"},
{sort_functions, false},
{stylesheet_file, "priv/my.css"},
{preprocess, true},
{includes, ["include"]}
]}.
{profiles, [
{prod, [
{relx, [
{dev_mode, false},
{include_erts, true},
{include_src, false}
]}
]},
{test, [
{src_dirs, [{"test", [{recursive, true}]}]},
{eunit_opts, [verbose]},
{deps, [
{mysql_client, {git, "git://git.code.sf.net/p/erlmysql/git", {branch, master}}},
{lager, {git, "https://github.com/erlang-lager/lager.git", {branch, "master"}}}
]}
]}
]}.