Hello, I just want to use Kotlin Native to access OpenCV library
But, cinterops only process c header but not c++ header
Unfortunately OpenCV only has full access with c++ header, is there any solution can I access c++ header with cinterops to generate klib?
k
Kris Wong
08/23/2019, 4:00 PM
I can tell you how I worked around this, but you're not going to like it 🙂
Kris Wong
08/23/2019, 4:00 PM
I created a shim Obj-C/++ framework and used that with cinterop
c
cubesky
08/23/2019, 4:08 PM
It seems this is a solution, but could it use in Windows or Linux build?