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