[K/N] Convert :kotlin-native:utilities:cli-runner buildscript to kts

Use folder structure from the rest of the project and build it by
the bootstrap compiler.
This commit is contained in:
Alexander Shabalin
2024-03-01 21:26:05 +01:00
committed by Space Team
parent e8ba534904
commit ec8bc6a64f
6 changed files with 18 additions and 24 deletions
@@ -0,0 +1,18 @@
plugins {
kotlin("jvm")
}
dependencies {
implementation(kotlinStdlib())
implementation(project(":kotlin-native:backend.native"))
implementation(project(":compiler:cli-common"))
implementation(project(":kotlin-native:Interop:StubGenerator"))
implementation(project(":kotlin-native:klib"))
implementation(project(":kotlin-native:endorsedLibraries:kotlinx.cli", configuration = "jvmRuntimeElements"))
implementation(project(":native:kotlin-native-utils"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}