blob: 4cacd9e026de8cab2a272562cafc3c0715aacbb2 [file] [log] [blame]
import org.gradle.api.Project
fun platformOf(project: Project): String =
when (project.name.substringAfterLast("-")) {
"js" -> "js"
"common", "native" -> throw IllegalStateException("${project.name} platform is not supported")
else -> "jvm"
}