kmath/kmath-histograms/build.gradle.kts

32 lines
598 B
Plaintext
Raw Permalink Normal View History

2021-02-11 11:18:16 +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{
2023-02-03 19:32:53 +03:00
jvm()
js()
2022-09-04 20:59:30 +03:00
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"))
api(spclibs.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
}