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
|
|
|
}
|
|
|
|
|
2024-03-27 09:11:12 +03:00
|
|
|
kscience {
|
2023-02-03 19:32:53 +03:00
|
|
|
jvm()
|
|
|
|
js()
|
2022-09-04 20:59:30 +03:00
|
|
|
native()
|
2024-02-17 21:32:26 +03:00
|
|
|
wasm()
|
2021-08-16 09:55:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.sourceSets {
|
2021-11-23 23:48:43 +03:00
|
|
|
|
2021-08-16 09:55:03 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-coroutines"))
|
2022-12-31 15:02:52 +03:00
|
|
|
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
|
2021-08-27 18:13:54 +03:00
|
|
|
}
|