2021-08-16 09:55:03 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
2022-04-04 14:43:20 +03:00
|
|
|
// id("ru.mipt.npm.gradle.native")
|
2021-08-16 09:55:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kscience {
|
|
|
|
useAtomic()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets {
|
2021-11-23 23:48:43 +03:00
|
|
|
all {
|
|
|
|
languageSettings.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:55:03 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-coroutines"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
2021-08-27 18:13:54 +03:00
|
|
|
}
|
2022-04-04 14:43:20 +03:00
|
|
|
|
|
|
|
// Testing multi-receiver!
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile> {
|
|
|
|
enabled = false
|
|
|
|
}
|