I'm trying to compile my app (app_1) with a dep from another project (proj2) which has some apps (e.g. app_a, app_b, app_c...).
proj2 is has an apps folder in which there are the said apps (app_a etc.).
I'm trying to get app_a, but it also depends on app_b. Whatever I do, I cannot seem to get it to work.
Using this in rebar.config of app_1:
{deps, [{proj2, {git, "git://github.com/scm/pr/proj2", {branch, "master"}}}]}.
I get
Dependency failure: source for proj2 does not contain a recognizable project and can not be built
Similar attempts with app_a instead of proj2, adding the /apps/app_a path etc. do not help. Running rebar3 3.12.0.
Any help would be appreciated in how is it possible. Thanks