• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 import org.jetbrains.kotlin.gradle.dsl.*
2 
3 // Redefine source sets because we are not using 'kotlin/main/fqn' folder convention
4 // TODO: port benchmarks to the same scheme
<lambda>null5 configure(subprojects.filter { !sourceless.contains(it.name) && it.name != "benchmarks" }) {
<lambda>null6     kotlinExtension.sourceSets.forEach {
7         it.configureDirectoryPaths()
8     }
9 }
10