Files
Sergej Jaskiewicz 0d2032f3ef [SIR] Auto-generate the Swift IR tree
Co-authored-by: Gleb Lukianets <gleb.lukianets@jetbrains.com>
2023-12-08 10:09:09 +00:00

25 lines
419 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
application
}
val runtimeOnly by configurations
val compileOnly by configurations
runtimeOnly.extendsFrom(compileOnly)
dependencies {
implementation(project(":generators:tree-generator-common"))
}
application {
mainClass.set("org.jetbrains.kotlin.sir.tree.generator.MainKt")
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}