27 lines
583 B
Plaintext
27 lines
583 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.mpp")
|
|
id("ru.mipt.npm.gradle.native")
|
|
}
|
|
|
|
//apply(plugin = "kotlinx-atomicfu")
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-core"))
|
|
api(npmlibs.atomicfu)
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation(project(":kmath-for-real"))
|
|
implementation(projects.kmath.kmathStat)
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0")
|
|
}
|
|
}
|
|
}
|
|
|
|
readme {
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
}
|