Files
kotlin-fork/native/cli-native/build.gradle.kts
T
Alexander Shabalin 24ede14e37 [K/N] Convert :kotlin-native:backend.native buildscript to kts
Use folder structure from the rest of the project and build it by
the bootstrap compiler.
2024-03-05 21:47:43 +00:00

15 lines
194 B
Kotlin

plugins {
kotlin("jvm")
}
dependencies {
api(project(":kotlin-native:backend.native"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
sourcesJar()
javadocJar()