fb8bf19091
The new name more precisely describes the meaning of this opt-int
20 lines
335 B
Kotlin
20 lines
335 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:compiler.common"))
|
|
api(project(":compiler:ir.tree"))
|
|
|
|
implementation(project(":core:compiler.common.native"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|