kmath/kmath-histograms/build.gradle.kts
2021-04-21 19:46:02 +07:00

26 lines
401 B
Plaintext

plugins {
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")
}
kscience {
useAtomic()
}
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
}
}
commonTest {
dependencies {
implementation(project(":kmath-for-real"))
}
}
}
readme {
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
}