Packages

Erlang based LLDP Libray

Current section

Files

Jump to
lldp rebar.config
Raw

rebar.config

{erl_opts, [
debug_info,
fail_on_warning,
{parse_transform},
{parse_transform, lager_transform}
]}.
{deps, [
lager,
{pkt, "0.4.5", {pkg, vd_pkt}},
{inet_ext, "0.4.1", {pkg, vd_inet_ext}}
]}.
{profiles,[
{test, [
{erl_opts, [nowarn_export_all]},
{shell, [
{apps, [gen_netlink, procket, lldp, sync]},
{vm_args, "config/vm.args"},
{config, "config/sys.config"}
]},
{deps, [
{procket, {git, "https://github.com/msantos/procket.git", {tag, "master"}}},
{gen_netlink, {git, "https://github.com/travelping/gen_netlink.git", {tag, "master"}}},
{sync, {git, "https://github.com/vasu-dasari/sync.git", {branch, "master"}}}
]}
]}
]}.