forked from kscience/kmath
46650a414e
# Conflicts: # CHANGELOG.md # README.md # kmath-core/README.md
23 lines
684 B
Plaintext
23 lines
684 B
Plaintext
plugins { id("ru.mipt.npm.mpp") }
|
|
|
|
kotlin.sourceSets {
|
|
all {
|
|
with(languageSettings) {
|
|
useExperimentalAnnotation("kotlinx.coroutines.InternalCoroutinesApi")
|
|
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
|
|
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
|
|
}
|
|
}
|
|
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-core"))
|
|
api(project(":kmath-complex"))
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${ru.mipt.npm.gradle.KScienceVersions.coroutinesVersion}")
|
|
}
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
} |