39 lines
953 B
Plaintext
39 lines
953 B
Plaintext
import ru.mipt.npm.gradle.Maturity
|
|
|
|
/*
|
|
* Copyright 2018-2021 KMath contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
id("ru.mipt.npm.gradle.common")
|
|
id("ru.mipt.npm.gradle.native")
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":kmath-core"))
|
|
}
|
|
}
|
|
}
|
|
|
|
readme {
|
|
description = "Complex numbers and quaternions."
|
|
maturity = Maturity.PROTOTYPE
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
feature(
|
|
id = "complex",
|
|
description = "Complex Numbers",
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt"
|
|
)
|
|
|
|
feature(
|
|
id = "quaternion",
|
|
description = "Quaternions",
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt"
|
|
)
|
|
}
|