-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrebar.config
More file actions
38 lines (28 loc) · 1.06 KB
/
rebar.config
File metadata and controls
38 lines (28 loc) · 1.06 KB
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
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
%% options
{cover_enabled, true}.
{eunit_opts, [{report,{eunit_surefire,[{dir,"."}]}}]}.
{edoc_opts, [{preprocess, true}]}.
{erl_opts, [debug_info, fail_on_warning]}.
{deps, [
{jiffy, ".*",
{git, "https://github.com/rcouch/jiffy.git",
{tag, "0.13.3-barrel-1"}}},
{snappy, ".*",
{git, "https://github.com/rcouch/snappy.git",
{tag, "1.1.0"}}},
{lager, ".*",
{git, "https://github.com/basho/lager.git",
{tag, "2.1.0"}}},
{ucol_nif, ".*",
{git, "https://github.com/refuge/ucol_nif.git",
{tag, "1.1.1"}}},
{gproc, ".*",
{git, "https://github.com/uwiger/gproc.git",
{tag, "0.5"}}}
]}.
{pre_hooks, [{"(linux|darwin|solaris)", compile, "make -C c_src/couch_js"},
{"(freebsd|netbsd|openbsd)", compile, "gmake -C c_src/couch_js"}]}.
{post_hooks, [{"(linux|darwin|solaris)", clean, "make -C c_src/couch_js clean"},
{"(freebsd|netbsd|openbsd)", compile, "gmake -C c_src/couch_js clean"}]}.