It looks like the linkerOpts in the cinterop .def ...
# kotlin-native
w
It looks like the linkerOpts in the cinterop .def file are used to create the klib, but if my mpp project is a library and not a binary, shouldn't it pass those linker opts onto the consumer of my library? I have a project wrapping SDL that I publish and then consume as a dependency in another project, and all the linkerOpts I specify are not being passed on to the consumer, even though I see them in them in the manifest file within the klib. Am I thinking of this wrong? Right now, I'm having to specify the libs that SDL requires in the consuming project that links an executable, but I'd like to specify them in the library project.