Is there any way to associate a `KotlinSourceSet` ...
# multiplatform
e
Is there any way to associate a
KotlinSourceSet
with a specific
KotlinTarget
? e.g.:
Copy code
kotlin.targets.configureEach {
  kotlin.sourceSets.configureEach {
    // only do something with this source set if it is associated with the target 
  }
}
n
You could get the target’s main
KotlinCompilation
and it should have a source set container AFAIR
1
e
Thanks, that worked