Files
kotlin-fork/generators/tree-generator-common/build.gradle.kts
T
Sergej Jaskiewicz cae4a9930b [FIR generator] Extract the Builder class to a common module
We want to use it to generate builder classes for other
trees, just like we already do with elements (see `AbstractElement` and
`AbsractImplementation`).
2023-12-01 12:06:06 +00:00

19 lines
279 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":core:compiler.common"))
implementation(project(":compiler:util"))
implementation(project(":generators"))
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}