forked from jtendo/confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
67 lines (44 loc) · 1.53 KB
/
rebar.config
File metadata and controls
67 lines (44 loc) · 1.53 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 ft=erlang et
%% == Core ==
%% Additional library directories to add to the code path
{lib_dirs, []}.
%% == Erlang Compiler ==
%% Erlang files to compile before the rest. Rebar automatically compiles
%% parse_transforms and custom behaviours before anything other than the files
%% in this list.
%% Erlang compiler options
%% Opts: fail_on_warning
{erl_opts, [warn_unused_vars, warn_unused_import, warn_exported_vars,
debug_info, {i, "include"}, {d, debug}]}.
%% MIB Options?
%{mib_opts, [{group_check, false}]}.
{mib_opts, []}.
%% SNMP mibs to compile first?
{mib_first_files, []}.
%% == EUnit ==
%% Options for eunit:test()
{eunit_opts, []}.
%% Additional compile options for eunit. erl_opts from above is also used
%{eunit_compile_opts, [{src_dirs, ["test"]}]}.
%% Whether to enable coverage reporting. Default is `false'
{cover_enabled, false}.
%% Whether to print coverage report to console. Default is `false'
{cover_print_enabled, false}.
%% == Dialyzer ==
%% Options for running the dialyzer, right now only `plt' is supported
{dialyzer_opts, []}.
%% == Cleanup ==
%% Which files to cleanup
{clean_files, ["rel/erl_crash.dump"]}.
%% == Reltool ==
%% Target directory for the release
{target, "target"}.
%% == OTP Applications ==
%% Binaries to link into the erlang path?
{app_bin, []}.
%% Enable validation of the OTP app module list. Default is 'true'
{validate_app_modules, true}.
%% == Subdirectories ==
%% Subdirectories?
{sub_dirs, ["rel"]}.