kmath/kmath-complex/build.gradle.kts

40 lines
830 B
Plaintext
Raw Permalink Normal View History

plugins {
2022-09-04 20:59:30 +03:00
id("space.kscience.gradle.mpp")
}
kscience {
2023-02-03 19:32:53 +03:00
jvm()
js()
2022-09-04 20:59:30 +03:00
native()
2023-05-26 11:38:50 +03:00
wasm()
2023-04-09 10:55:58 +03:00
2023-02-03 19:32:53 +03:00
dependencies {
api(projects.kmathCore)
2023-11-04 11:49:31 +03:00
api(projects.kmathMemory)
}
2023-04-09 10:55:58 +03:00
testDependencies {
implementation(projects.testUtils)
}
}
readme {
description = "Complex numbers and quaternions."
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
id = "complex",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt"
2022-09-04 20:59:30 +03:00
) {
2022-06-13 11:17:41 +03:00
"Complex numbers operations"
}
feature(
id = "quaternion",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt"
2022-09-04 20:59:30 +03:00
) {
2022-06-13 11:17:41 +03:00
"Quaternions and their composition"
}
}