d100a07981
It was not active in diagnostic tests otherwise.
21 lines
454 B
Kotlin
21 lines
454 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(project(":compiler:ir.objcinterop"))
|
|
compileOnly(intellijCore())
|
|
api(project(":native:kotlin-native-utils"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
standardPublicJars()
|