-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
32 lines (27 loc) · 890 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
24
25
26
27
28
29
30
31
32
{deps, [
{grisp,
{git, "https://github.com/zofpolkowska/grisp", {ref, "5b70c02"}}},
{epmd,
{git, "https://github.com/erlang/epmd", {ref, "4d1a59"}}}
]}.
{erl_opts, [debug_info]}.
{plugins, [rebar3_grisp]}.
{grisp, [
{otp, [
{version, "21.0"}
]},
{deploy, [
{pre_script, "rm -rf /Volumes/GRISP/*"},
{destination, "/Volumes/GRISP"},
{post_script, "diskutil unmount /Volumes/GRISP"}
]},
{build, [
{toolchain, [
{directory, "/Users/zofiapolkowska/GRiSP/grisp-software/rtems-install/rtems/5"}
]}
]}
]}.
{shell, [{apps, []}]}.
{relx, [
{release, {grisp_802_15_4, "0.1.0"}, [{epmd, none}, grisp_802_15_4]}
]}.