In rebar3 erlang library I have two modules: t1
and t1
in src
directory and t3
module in extras
directory. Now in mylib.app.src
I'm trying to make them available outside library by:
{modules, [t1, t2, t3]}
I pointed that extra
directory in rebar3.config
:
{extra_src_dirs, ["extras"]}.
But still, I cannot use t3
module in project, which uses this library. What else should I do to make this module available outside?
"extra"
≠"extras"
is it typo here or in your code? – Aleksei Matiushkin