Lets say 2 Frameworks A & B are created. Inside framework A, using Cartthage framework B is included. Now when I include framework A in a project using carthage, it checks out both of them but only builds B.
What should I do to get framework A also built ?
Cartfile for framework A:
git "http://location/to/fwk/b" "branch"
Cartfile for Project:
git "http://location/to/fwk/a" "branch"
Once I run carthage update
from the project location, I can see from the logs that both frameworks are checked out but in the build location I can only see Framework B.
Also tried adding framework B to Cartfile.private but it didnt help