Skip to content

Commit c5030c4

Browse files
committed
Merge pull request #1507 from petermm/docs-eavmlib-ex_doc
Docs - eavmlib ex_doc: add needed include, ex_doc Enables `rebar3 ex_doc` to succeed for eavmlib. For version it seems to be manual replace in rebar.config eg: `sed -i "" "s/{version, .*}/{version, \"0.6.5\"}/" rebar.config && rebar3 ex_doc` These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents 92d10b4 + f625b62 commit c5030c4

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

libs/eavmlib/rebar.config

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,18 @@
1818
% SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
1919
%
2020

21-
{erl_opts, [debug_info]}.
21+
{erl_opts, [debug_info, {i, "../include"}]}.
2222
{deps, []}.
23-
{plugins, [rebar3_hex]}.
23+
{plugins, [rebar3_hex, rebar3_ex_doc]}.
2424

2525
{shell, [
2626
{apps, [eavmlib]}
2727
]}.
28+
{ex_doc, [
29+
{version, "0.1.0"},
30+
{source_url, "https://github.com/atomvm/AtomVM"},
31+
{extras, []},
32+
{main, "atomvm"},
33+
{output, "doc"},
34+
{api_reference, true}
35+
]}.

0 commit comments

Comments
 (0)