dead.fish
01/16/2025, 12:08 PMdependencies { ksp(my.lib) }
block or is there any syntax available using the multiplatform source set? Using kotlin { sourceSets { commonMain.dependencies { ksp(my.lib) }}
or kotlin { sourceSets { commonMain.dependencies { val kspDep by configurations; kspDep(my.lib) }}
did not work (the former finds the KspExtension
configured by the KSP plugin.vendelieu
01/18/2025, 2:45 PMadd("ksp[Target]", processor)
ie add("kspJvm", "com.example.processor")