forked from kscience/kmath
25 lines
398 B
Plaintext
25 lines
398 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.mpp")
|
|
id("ru.mipt.npm.gradle.native")
|
|
}
|
|
|
|
kscience {
|
|
useAtomic()
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
all {
|
|
languageSettings.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
}
|
|
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-coroutines"))
|
|
}
|
|
}
|
|
}
|
|
|
|
readme {
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
}
|