[build] Migrate kotlin-native/klib/build.gradle to KTS
^KT-62340
This commit is contained in:
committed by
Space Team
parent
ca0c2f1405
commit
c1a4c33301
@@ -0,0 +1,26 @@
|
||||
buildscript {
|
||||
apply(from = "$rootDir/kotlin-native/gradle/kotlinGradlePlugin.gradle")
|
||||
}
|
||||
|
||||
plugins {
|
||||
kotlin("jvm")
|
||||
}
|
||||
|
||||
repositories {
|
||||
extra["bootstrapKotlinRepo"]?.let {
|
||||
maven(url = it)
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(kotlinStdlib())
|
||||
implementation(project(":kotlin-native:backend.native", "cli_bcApiElements"))
|
||||
implementation(project(":kotlin-native:utilities:basic-utils"))
|
||||
implementation(project(":kotlin-util-klib-abi"))
|
||||
}
|
||||
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinCompile<*>> {
|
||||
kotlinOptions {
|
||||
freeCompilerArgs += "-Xskip-prerelease-check"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user