Files
kotlin-fork/compiler/cli/cli-common/build.gradle.kts
T
2017-09-19 21:37:27 +02:00

19 lines
399 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(project(":core:util.runtime"))
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java"))
compile(project(":compiler:frontend.script"))
compile(ideaSdkCoreDeps(*(rootProject.extra["ideaCoreSdkJars"] as Array<String>)))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}