f7a9065b75
#KTI-82
22 lines
475 B
Kotlin
22 lines
475 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:ir.psi2ir"))
|
|
api(project(":compiler:backend.jvm"))
|
|
api(project(":compiler:ir.tree.impl"))
|
|
api(project(":compiler:ir.serialization.jvm"))
|
|
implementation(project(":compiler:backend.jvm.lower"))
|
|
implementation(project(":compiler:backend.jvm.codegen"))
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
}
|
|
"test" {}
|
|
}
|