forked from uwiger/sext
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathrebar.config
More file actions
19 lines (18 loc) · 772 Bytes
/
rebar.config
File metadata and controls
19 lines (18 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
%% -*- erlang -*-
{so_name, "sext.so"}.
{src_dirs, ["examples"]}.
{port_source, ["c_src/*.c"]}.
{port_env, [ {"CFLAGS", "$CFLAGS -O3"} ]}.
{erl_opts, [debug_info]}.
{profiles, [{docs,
[{deps, [{edown, ".*", {git, "https://github.com/basho/edown.git", {tag, "0.8.1"}}}]},
{edoc_opts, [{doclet, edown_doclet},
{src_path, ["src/", "examples/"]},
{packages,
false},
{subpackages,
true},
{top_level_readme,
{"./README.md",
"http://github.com/basho/sext"}}]}]}
]}.