0db8931026
^KT-65281 Fixed ^KT-65108 Fixed
29 lines
652 B
Kotlin
29 lines
652 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":native:objcexport-header-generator"))
|
|
implementation(project(":compiler:cli-base"))
|
|
implementation(project(":compiler:ir.objcinterop"))
|
|
implementation(project(":compiler:ir.serialization.native"))
|
|
implementation(project(":core:descriptors"))
|
|
|
|
testImplementation(projectTests(":native:objcexport-header-generator"))
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
optIn.add("org.jetbrains.kotlin.backend.konan.InternalKotlinNativeApi")
|
|
}
|
|
}
|
|
|
|
testsJar()
|
|
|
|
objCExportHeaderGeneratorTest("test")
|