does anyone know if/how cinterop handles `@import ...
# kotlin-native
k
does anyone know if/how cinterop handles
@import Module
?
a
It did not for for me but I could just import the .h files with
#import<header.h>
when I was using a module for some reason. I did not have to write something like
#import<library/header.h>
anymore after adding the module map. Not really sure why it worked.
k
yeah it looks to me like the toolchain can't yet handle dependencies between pods