forked from kscience/kmath
e5d5ac17da
# Conflicts: # build.gradle.kts # examples/build.gradle.kts # examples/src/main/kotlin/kscience/kmath/ast/ExpressionsInterpretersBenchmark.kt # settings.gradle.kts
26 lines
559 B
Plaintext
26 lines
559 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.mpp")
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
all {
|
|
with(languageSettings) {
|
|
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
|
|
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
|
|
}
|
|
}
|
|
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-coroutines"))
|
|
}
|
|
}
|
|
|
|
jvmMain {
|
|
dependencies {
|
|
api("org.apache.commons:commons-rng-sampling:1.3")
|
|
api("org.apache.commons:commons-rng-simple:1.3")
|
|
}
|
|
}
|
|
}
|