-
Notifications
You must be signed in to change notification settings - Fork 1
/
rebar.config
44 lines (35 loc) · 1.11 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
{erl_opts, [debug_info]}.
{deps, [
{rosie_rclerl, "*.", {git, "https://github.com/rosie-project/rosie_rclerl.git", {branch, "main"}}},
{tf2_msgs, {ros2, galactic, {branch, "ros2"}}},
{visualization_msgs, {ros2, galactic}}
]}.
{shell,[meda_robot]}.
{plugins, [
erlfmt,
rebar3_appup_plugin,
{rosie_ros2_deps, "*.",
{git, "https://github.com/rosie-project/rosie_ros2_deps.git", {branch, "master"}}},
{rosie_interface_compiler, "*.",
{git, "https://github.com/rosie-project/rosie_interface_compiler.git", {branch, "master"}}}
]}.
{relx, [{release, {rosie_hotswap_example, "1.0.1"},
[meda_robot,
sasl]},
{sys_config, "./config/sys.config"},
{vm_args, "./config/vm.args"},
{dev_mode, false},
{include_erts, true},
{extended_start_script, true},
{overlay, [
{mkdir, "data"},
{copy, "data", "data"}
]}
]}.
{provider_hooks, [
{pre, [{compile, {rosie, compile}}]},
{post, [{clean, {rosie, clean}}]},
{pre, [{tar, {appup, tar}}]},
{post, [{compile, {appup, compile}},
{clean, {appup, clean}}]}
]}.