forked from kscience/kmath
25 lines
368 B
Plaintext
25 lines
368 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
kscience {
|
|
useAtomic()
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-core"))
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation(project(":kmath-for-real"))
|
|
}
|
|
}
|
|
}
|
|
|
|
readme {
|
|
this.maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
}
|