Skip to content

Commit

Permalink
Adding support for rebar3
Browse files Browse the repository at this point in the history
  • Loading branch information
Torbjorn Tornkvist committed Sep 28, 2017
1 parent fc98d8a commit 304175c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
7 changes: 7 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{erl_opts, [debug_info]}.

{deps, [
%{pp_record, "0.1.1"}, % package
{pp_record, {git, "git://github.com/etnt/pp_record.git", {tag, "0.1.1"}}} % alternatively, source
]
}.
15 changes: 15 additions & 0 deletions src/edbg.app.src
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{application, edbg,
[{description, "TTY interface to the Erlang debugger and tracer"},
{vsn, "0.1.1"},
{registered, []},
{applications,
[kernel,
stdlib
]},
{env,[]},
{modules, []},
{mod, {edbg_app, []}},
{maintainers, []},
{licenses, ["Apache"]},
{links, [{"Github", "https://github.com/etnt/edbg"}]}
]}.

0 comments on commit 304175c

Please sign in to comment.