22 lines
278 B
Plaintext
22 lines
278 B
Plaintext
plugins {
|
|
kotlin("multiplatform") version "2.1.0"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
kotlin {
|
|
mingwX64()
|
|
linuxX64()
|
|
macosX64()
|
|
macosArm64()
|
|
sourceSets {
|
|
nativeMain {
|
|
dependencies {
|
|
implementation(project(":modules:low-level:c-interop-utilities"))
|
|
}
|
|
}
|
|
}
|
|
} |