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")
|
2021-09-19 20:48:36 +03:00
|
|
|
// id("com.xcporter.metaview") version "0.0.5"
|
2020-09-25 10:13:38 +03:00
|
|
|
}
|
2019-01-26 19:38:18 +03:00
|
|
|
|
2021-11-23 23:48:43 +03:00
|
|
|
kotlin.sourceSets {
|
|
|
|
filter { it.name.contains("test", true) }
|
|
|
|
.map(org.jetbrains.kotlin.gradle.plugin.KotlinSourceSet::languageSettings)
|
2021-11-25 19:26:08 +03:00
|
|
|
.forEach {
|
|
|
|
it.optIn("space.kscience.kmath.misc.PerformancePitfall")
|
|
|
|
it.optIn("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
|
|
}
|
2021-11-15 18:42:00 +03:00
|
|
|
|
2021-11-23 23:48:43 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2021-01-06 17:01:37 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-05 18:05:16 +03:00
|
|
|
}
|