Assume I have two frameworks A and B, both required by framework C.
Framework C will be shipped so that third parties can use it in their applications (X). The problem is, that C just links with A and B and doesn't embed them, which is why X needs to link to A and B as well in order for C to work.
Is there any way to have C embed A and B so that X doesn't need to link to them?
An ideal solution to me would be that the developer of application X would only link against framework C, import the corresponding header and be done with it. Given that C handles A and B, the developer wouldn't need to know anything about A and B.