Files
kotlin-fork/compiler/ir/ir.tree.persistent/build.gradle.kts
T
Anton Bannykh 97080c49fc Persistent IR generator
Goal:
- avoid hand-writing the boilerplate
- easier PIR evolution

Output is reasonably close the hand-writtern version
2021-02-17 10:42:50 +03:00

17 lines
225 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":compiler:ir.tree"))
}
sourceSets {
"main" {
projectDefault()
this.java.srcDir("gen")
}
"test" {}
}