97080c49fc
Goal: - avoid hand-writing the boilerplate - easier PIR evolution Output is reasonably close the hand-writtern version
17 lines
225 B
Kotlin
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" {}
|
|
}
|