2021-02-11 11:18:16 +03:00
|
|
|
plugins {
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
2021-02-11 11:18:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kscience {
|
|
|
|
useAtomic()
|
|
|
|
}
|
2019-02-13 18:21:51 +03:00
|
|
|
|
2021-01-28 20:04:33 +03:00
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
}
|
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"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
this.maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
2020-09-08 12:40:47 +03:00
|
|
|
}
|