697d0d5638
^KT-60923 Fixed
22 lines
398 B
Kotlin
22 lines
398 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:util"))
|
|
api(project(":compiler:frontend"))
|
|
api(project(":compiler:backend-common"))
|
|
api(project(":compiler:ir.tree"))
|
|
api(project(":compiler:ir.interpreter"))
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
optInToIrSymbolInternals()
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|