kmath/kmath-optimization/build.gradle.kts

25 lines
398 B
Plaintext
Raw Normal View History

2021-08-16 09:55:03 +03:00
plugins {
2022-07-29 15:58:02 +03:00
id("space.kscience.gradle.mpp")
2022-09-04 20:59:30 +03:00
}
kscience{
native()
2021-08-16 09:55:03 +03:00
}
kotlin.sourceSets {
all {
languageSettings.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
}
2021-08-16 09:55:03 +03:00
commonMain {
dependencies {
api(project(":kmath-coroutines"))
api(spclibs.atomicfu)
2021-08-16 09:55:03 +03:00
}
}
}
readme {
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
}