kmath/kmath-histograms/build.gradle.kts
2024-02-17 21:32:26 +03:00

33 lines
547 B
Plaintext

plugins {
id("space.kscience.gradle.mpp")
}
kscience{
jvm()
js()
native()
wasm()
useCoroutines()
}
//apply(plugin = "kotlinx-atomicfu")
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
api(spclibs.atomicfu)
}
}
commonTest {
dependencies {
implementation(project(":kmath-for-real"))
implementation(projects.kmath.kmathStat)
}
}
}
readme {
maturity = space.kscience.gradle.Maturity.PROTOTYPE
}