b38ebbb853
^KT-62292
23 lines
511 B
Kotlin
23 lines
511 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":compiler:util"))
|
|
api(project(":compiler:ir.tree"))
|
|
api(project(":core:compiler.common"))
|
|
implementation(project(":compiler:resolution.common"))
|
|
implementation(project(":compiler:frontend.common"))
|
|
implementation(project(":compiler:frontend.common-psi"))
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|