-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreltool.config
50 lines (48 loc) · 1.69 KB
/
reltool.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
49
50
{sys, [
{lib_dirs, ["../lib","../deps","../plugins","../src"]},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
{rel, "emp", "1",
[
kernel,
stdlib,
sasl,
emp_tcpi,
%% emp_httpi,
empdb,
emplog,
empd
]},
{rel, "start_clean", "",
[
kernel,
stdlib
]},
{boot_rel, "emp"},
{profile, embedded},
{incl_cond, derived},
{excl_archive_filters, [".*"]}, %% Do not archive built libs
{excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)",
"^erts.*/(doc|info|include|lib|man|src)"]},
{excl_app_filters, ["\.gitignore"]},
{app, sasl, [{incl_cond, include}]},
{app, stdlib, [{incl_cond, include}]},
{app, kernel, [{incl_cond, include}]},
{app, hipe, [{incl_cond, exclude}]},
{app, emp_tcpi, [{incl_cond, include}]},
%% {app, emp_httpi, [{incl_cond, include}]},
{app, empd, [{incl_cond, include}]},
{app, empdb, [{incl_cond, include}]},
{app, emplog, [{incl_cond, include}]}
]}.
{target_dir, "emp"}.
{overlay, [
{mkdir, "log/sasl"},
{copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"},
{copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},
{copy, "files/emp", "bin/emp"},
{copy, "files/sys.config", "releases/\{\{rel_vsn\}\}/sys.config"},
{copy, "files/emp.cmd", "bin/emp.cmd"},
{copy, "files/start_erl.cmd", "bin/start_erl.cmd"},
{copy, "files/vm.args", "releases/\{\{rel_vsn\}\}/vm.args"}
]}.