2021-04-16 14:02:44 +03:00
|
|
|
import ru.mipt.npm.gradle.Maturity
|
|
|
|
|
2021-03-23 18:13:35 +03:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-01-06 17:01:37 +03:00
|
|
|
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-06 17:01:37 +03:00
|
|
|
}
|
|
|
|
|
2021-01-20 10:56:09 +03:00
|
|
|
kotlin.sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
}
|
2021-01-06 17:01:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
description = "Complex numbers and quaternions."
|
2021-01-20 10:56:09 +03:00
|
|
|
maturity = Maturity.PROTOTYPE
|
2021-01-06 17:01:37 +03:00
|
|
|
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"
|
2021-01-06 17:01:37 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "quaternion",
|
|
|
|
description = "Quaternions",
|
2021-03-16 22:46:22 +03:00
|
|
|
ref = "src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt"
|
2021-01-06 17:01:37 +03:00
|
|
|
)
|
|
|
|
}
|