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

18 lines
300 B
Kotlin

apply { plugin("kotlin") }
jvmTarget = "1.6"
dependencies {
compile(project(":compiler:util"))
compile(project(":compiler:backend"))
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}