7e3b909394
KT-64392
23 lines
505 B
Kotlin
23 lines
505 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:ir.tree"))
|
|
api(project(":compiler:ir.serialization.common"))
|
|
|
|
implementation(project(":compiler:fir:fir2ir"))
|
|
implementation(project(":compiler:fir:tree"))
|
|
implementation(project(":compiler:ir.objcinterop"))
|
|
implementation(project(":core:compiler.common.native"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|