fb8bf19091
The new name more precisely describes the meaning of this opt-int
28 lines
659 B
Kotlin
28 lines
659 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.backend.common"))
|
|
api(project(":compiler:ir.serialization.common"))
|
|
api(project(":compiler:ir.serialization.js"))
|
|
api(project(":js:js.ast"))
|
|
api(project(":js:js.frontend"))
|
|
api(project(":compiler:backend.js"))
|
|
api(project(":wasm:wasm.ir"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|