kmath/kmath-polynomial/build.gradle.kts

29 lines
619 B
Plaintext
Raw Normal View History

2022-07-11 17:27:59 +03:00
plugins {
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")
id("ru.mipt.npm.gradle.native")
}
description = "Polynomial extra utilities and rational functions"
kotlin.sourceSets {
commonMain {
dependencies {
api(projects.kmathCore)
}
}
commonTest {
dependencies {
2022-07-11 22:39:13 +03:00
api(projects.testUtilsPolynomial)
2022-07-11 17:27:59 +03:00
api(kotlin("test"))
}
}
}
readme {
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
// feature("TODO") { "TODO" }
}