Im trying to generate a shared library for a setup...
# kotlin-native
k
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.
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.
anything like that supported? (I'm using the new mpp plugin)
o
Yes, this behavior is expected, but we may expose outer libs, given enough demand