kmath/kmath-complex/build.gradle.kts

32 lines
769 B
Plaintext
Raw Normal View History

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-01-20 10:56:09 +03:00
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
}
}
}
readme {
description = "Complex numbers and quaternions."
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
id = "complex",
description = "Complex Numbers",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt"
)
feature(
id = "quaternion",
description = "Quaternions",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt"
)
}