478205e6e8
^KT-62340
29 lines
720 B
Kotlin
29 lines
720 B
Kotlin
buildscript {
|
|
apply(from = "$rootDir/kotlin-native/gradle/kotlinGradlePlugin.gradle")
|
|
}
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
repositories {
|
|
extra["bootstrapKotlinRepo"]?.let {
|
|
maven(url = it)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:descriptors"))
|
|
implementation(project(":native:frontend.native"))
|
|
implementation(project(":compiler:ir.psi2ir"))
|
|
implementation(project(":compiler:ir.serialization.native"))
|
|
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"
|
|
}
|
|
}
|