Im trying to generate a shared library for a setup with a project A which depends on another project B. It this a supported case? It seems to generate a single `.h`/`dylib` pair that only exposes symbols from project A.
kyonifer
11/20/2018, 7:22 PM
I'd expect it to work one of two ways:
1) two `.dylib`s generated, one for each project, with the
A.dylib
depending on (linked against)
B.dylib
2) a single
.dylib
generated that has symbols from both projects included in it.
kyonifer
11/20/2018, 7:22 PM
anything like that supported? (I'm using the new mpp plugin)
o
olonho
11/20/2018, 7:41 PM
Yes, this behavior is expected, but we may expose outer libs, given enough demand