-
|
For example, say I have the C++ library B that is dependent on library A. I want library A to have its own standalone bindings for classes/functions, etc. I also want library B to have its own bindings, via the How do I go about accomplishing this without causing type conflicts, or being duplicative? I can't simply link library This makes sense, but leaves me scratching my head. I want to distribute these sets of bindings separately, i.e., not as a single library, but I want them to be interoperable with the types defined in library A. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
@wjakob This question is a tricky one, might need your input. Although I expect the answer is "this is not supported" |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Can confirm that this just works. Thanks! |
Beta Was this translation helpful? Give feedback.
See also: #1067, #1195, and the files
tests/*inter_module*