Say I have header files `A.h` and `B.h`. `B.h` has...
# kotlin-native
d
Say I have header files
A.h
and
B.h
.
B.h
has
#include "A.h"
. I want to make
A.klib
and
B.klib
with cinterop tool but I want
B.klib
to recycle the identifiers from
A.klib
so that the libraries are compatible. I think cinterop does this for platform libraries. How do I do such myself?
It seems the cinterop tool already does this but only inter-project and not intra-project.
i
Are you asking about using the cinterop tool from a command line or about using it from Gradle?
d
Gradle
In a multiplatform setup.
i
Yes, in Gradle, such a dependency can be only inter-module. Does this question relate to the same project as the previous one?
d
Yes