0713866c1e
^KT-63905 Fixed
17 lines
379 B
Kotlin
17 lines
379 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":compiler:cli-base"))
|
|
implementation(project(":compiler:cli-common"))
|
|
implementation(project(":core:compiler.common.native"))
|
|
implementation(project(":core:descriptors"))
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
optIn.add("org.jetbrains.kotlin.backend.konan.InternalKotlinNativeApi")
|
|
}
|
|
}
|