How to deliver compiled static library with a dynamic dependencies?

So, I'd like to deliver a static library, but the App should have a dynamic library linked on in.

It may be depicted a little bit

DynamicA
^
|
Apps -> StaticA -> DynamicA

So whenever we want to embed static A lib, the app module should embed to DynamicA, but DynamicA can be not precompiled
How to deliver compiled static library with a dynamic dependencies?
 
 
Q