-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
29 lines (25 loc) · 868 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
{erl_opts, [debug_info]}.
{deps, [
{sync, ".*", {git, "https://github.com/rustyio/sync.git", {branch, "master"}}},
{qdate, ".*", {git, "https://github.com/choptastic/qdate.git", {branch, "master"}}},
{datum, "*", {git, "https://github.com/fogfish/datum.git", {branch, "master"}}},
{worker_pool, "*", {git, "https://github.com/lafirest/worker_pool.git", {branch, "master"}}}
]}.
{relx, [{release, {erl_ignite, "0.1.0"},
[
qdate,
datum,
worker_pool
]}
]
}.
{shell, [
{config, "config/sys.config"},
{apps, [erl_ignite]}
]}.
{pre_hooks,
[{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd)", compile, "gmake -C c_src"}]}.
{post_hooks,
[{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd)", clean, "gmake -C c_src clean"}]}.