fb8bf19091
The new name more precisely describes the meaning of this opt-int
22 lines
420 B
Kotlin
22 lines
420 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:ir.tree"))
|
|
api(project(":compiler:ir.backend.common"))
|
|
api(project(":compiler:backend.jvm"))
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
}
|
|
"test" {}
|
|
}
|