Is it possible to use kotlinpoet to generate code for a multiplatform project? I've looked through the projects PRs and issues and see support for emitting multiplatform code is there, but I'm not sure how annotation processing with gradle would play into that. All of the research I've done has annotation processing tied to the jvm, which makes sense since gradle runs on the jvm. Can anyone give me a quick rundown on this?
I'm attempting to create a pure kotlin library without any platform specific dependencies that can process annotations annotations and emit code.