2021-02-11 11:18:16 +03:00
|
|
|
plugins {
|
2022-07-29 15:58:02 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
id("space.kscience.gradle.native")
|
2021-02-11 11:18:16 +03:00
|
|
|
}
|
|
|
|
|
2022-06-12 15:16:40 +03:00
|
|
|
//apply(plugin = "kotlinx-atomicfu")
|
2019-02-13 18:21:51 +03:00
|
|
|
|
2021-01-28 20:04:33 +03:00
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
2022-06-12 15:16:40 +03:00
|
|
|
api(npmlibs.atomicfu)
|
2021-01-28 20:04:33 +03:00
|
|
|
}
|
2019-02-13 18:21:51 +03:00
|
|
|
}
|
2021-02-11 11:18:16 +03:00
|
|
|
commonTest {
|
|
|
|
dependencies {
|
2021-01-28 20:04:33 +03:00
|
|
|
implementation(project(":kmath-for-real"))
|
2022-04-05 23:23:29 +03:00
|
|
|
implementation(projects.kmath.kmathStat)
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0")
|
2021-01-28 20:04:33 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2020-09-08 12:40:47 +03:00
|
|
|
}
|