I try to compile `.def` file to `klib` with header...
# kotlin-native
a
I try to compile
.def
file to
klib
with header file included. This header contains other includes.
Copy code
# cat myext.def
headers = somepath\somelib.h

# cinterop -def myext.def -o myext
error: 'someOther.h' file not found with <angled> include; use "quotes" instead
It's third party headers and I can't change them. How to resolve this without adding those headers into
def
in right order?
k
add include paths
👌 1