Files
kotlin-fork/generators/tree-generator-common/build.gradle.kts
T
Sergej Jaskiewicz a995c522f7 [IR generator] Factor out TypeRef to common module
This is a step towards commonizing the code generator between
FIR and IR: KT-61970
2023-09-22 19:46:14 +00:00

16 lines
189 B
Kotlin

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