kmath/kmath-core/build.gradle.kts

21 lines
536 B
Plaintext
Raw Normal View History

2020-09-25 10:13:38 +03:00
plugins {
2021-04-14 12:40:26 +03:00
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")
2021-02-21 16:13:40 +03:00
id("ru.mipt.npm.gradle.native")
// id("com.xcporter.metaview") version "0.0.5"
2020-09-25 10:13:38 +03:00
}
2019-01-26 19:38:18 +03:00
kotlin.sourceSets {
filter { it.name.contains("test", true) }
.map(org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet::languageSettings)
.forEach {
it.optIn("space.kscience.kmath.misc.PerformancePitfall")
it.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
}
commonMain {
dependencies {
}
}
2020-06-05 18:05:16 +03:00
}