Current section

Files

Jump to
mongoose_jid rebar.config
Raw

rebar.config

{erl_opts, [debug_info]}.
{deps,
[
{stringprep, "1.0.25"}
]}.
{plugins, [pc, rebar3_hex]}.
{artifacts, ["priv/jid.so"]}.
{port_specs,
[
{
% Any arch
".*",
% Create library
"priv/jid.so",
% From files
["c_src/*.cpp"],
% Using options
[ {env, [{ "CXXFLAGS", "$CXXFLAGS -O3 -std=c++11" }]} ]
}
]}.
{provider_hooks,
[
{post,
[
{compile, {pc, compile}},
{clean, {pc, clean}}
]}
]}.
{profiles,
[
{test,
[
{deps, [{proper, "1.3.0"}]},
{plugins,
[
pc,
coveralls,
{rebar3_codecov, "0.2.0"}
]}
]}
]}.
{cover_enabled, true}.
{cover_export_enabled, true}.