I'm trying to write a `SymbolProcessor` for my Kot...
# ksp
t
I'm trying to write a
SymbolProcessor
for my Kotlin Multiplatform project (JS an JVM). I was able to get some code generated for the
jvmMain
sourceSet:
Copy code
dependencies {
  val kspJvm by configurations.getting
  kspJvm(project(":ksp-generator"))
}
but the generated code doesn't seem to share the same dependencies as my
jvmMain
source set, or know about any of the code I wrote in
jvmMain
. How can I fix this?
After some investigation, it seems like ksp is generating its code into the
generatedByKspKotlinJvm
source set. Is it possible to get it to generate code into the
jvmMain
source set?