-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
44 lines (40 loc) · 1.08 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
{deps, [
grisp,
{epmd, {git, "https://github.com/erlang/epmd", {ref, "4d1a59"}}},
{lasp, {git, "https://github.com/lasp-lang/lasp.git", {branch, "master"}}},
partisan
]}.
{erl_opts, [debug_info]}.
{grisp, [
{otp, [
{version, "21.0"}
]},
{deploy, [
% {pre_script, "rm -rf /Volumes/GRISP/*"},
% {destination, "/Volumes/GRISP"},
% {post_script, "diskutil unmount /Volumes/GRISP"}
{pre_script, "rm -rf /media/laymer/GRISP/*"},
{destination, "/media/laymer/GRISP"},
{post_script, "umount /media/laymer/GRISP"}
]},
{build, [
{toolchain, [
% {directory,"/Users/Laymer/GRiSP/grisp-software/rtems-install/rtems/5"}
{directory,"/home/laymer/NewGRiSP/grisp-software/rtems-install/rtems/5"}
]}
]}
]}.
{shell, [{apps, []},
{config, "config/sys.config"}]}.
{relx, [
{release, {grisplite, "0.1.0"}, [
sasl,
runtime_tools,
{epmd, none},
% {lasp, load},
lasp,
grisplite
]},
{sys_config, "config/sys.config"},
{extended_start_script, true}
]}.