• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 import org.gradle.api.Project
2 
3 // Use from Groovy for now
platformOfnull4 fun platformOf(project: Project): String =
5     when (project.name.substringAfterLast("-")) {
6         "js" -> "js"
7         "common", "native" -> throw IllegalStateException("${project.name} platform is not supported")
8         else -> "jvm"
9     }
10