6da3ecceab
Forward declaration type doesn't exist in runtime. This restricts its possible usages. ^KT-59764
20 lines
401 B
Kotlin
20 lines
401 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:frontend"))
|
|
compileOnly(project(":compiler:frontend.java"))
|
|
compileOnly(project(":core:compiler.common.native"))
|
|
compileOnly(intellijCore())
|
|
api(project(":native:kotlin-native-utils"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
standardPublicJars()
|