Files
Alexander Shabalin 3a5f33e9cd [K/N] Convert :kotlin-native:klib
Use folder structure from the rest of the project and build it by
the bootstrap compiler.
2024-03-05 21:47:43 +00:00

19 lines
593 B
Kotlin

plugins {
kotlin("jvm")
}
dependencies {
implementation(project(":core:descriptors"))
implementation(project(":native:frontend.native"))
implementation(project(":compiler:ir.psi2ir"))
implementation(project(":compiler:ir.serialization.native"))
implementation(project(":kotlin-util-klib-abi"))
implementation(project(":tools:kotlinp-klib"))
implementation(project(":kotlinx-metadata-klib")) { isTransitive = false }
implementation(project(":kotlin-metadata")) { isTransitive = false }
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}