kmath/kmath-complex/build.gradle.kts

34 lines
795 B
Plaintext

plugins {
kotlin("multiplatform")
id("space.kscience.gradle.common")
id("space.kscience.gradle.native")
}
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-core"))
}
}
}
readme {
description = "Complex numbers and quaternions."
maturity = space.kscience.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
id = "complex",
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt"
){
"Complex numbers operations"
}
feature(
id = "quaternion",
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt"
){
"Quaternions and their composition"
}
}