35 lines
604 B
Plaintext
35 lines
604 B
Plaintext
import ru.landgrafhomyak.bgtu.networks0.build_script.Dependencies
|
|
import ru.landgrafhomyak.bgtu.networks0.build_script.setupHierarchy
|
|
|
|
plugins {
|
|
kotlin("multiplatform") version "2.1.0"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
|
|
kotlin {
|
|
mingwX64()
|
|
linuxX64()
|
|
linuxArm64()
|
|
macosX64()
|
|
macosArm64()
|
|
sourceSets {
|
|
setupHierarchy()
|
|
|
|
commonMain {
|
|
dependencies {
|
|
implementation(Dependencies.kotlin_atomicfu)
|
|
}
|
|
}
|
|
|
|
nativeMain {
|
|
dependencies {
|
|
implementation(project(":modules:low-level:c-interop-utilities"))
|
|
implementation(project(":modules:low-level:multithreading"))
|
|
}
|
|
}
|
|
}
|
|
} |