fb8bf19091
The new name more precisely describes the meaning of this opt-int
23 lines
468 B
Kotlin
23 lines
468 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:ir.tree"))
|
|
api(project(":compiler:ir.serialization.common"))
|
|
api(project(":core:descriptors.jvm"))
|
|
api(project(":core:metadata.jvm"))
|
|
implementation(project(":core:deserialization.common.jvm"))
|
|
api(project(":compiler:frontend.java"))
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
}
|
|
"test" {}
|
|
}
|