kmath/kmath-trajectory/build.gradle.kts

18 lines
432 B
Plaintext
Raw Normal View History

2022-07-15 19:13:50 +03:00
plugins {
kotlin("multiplatform")
2022-07-29 15:58:02 +03:00
id("space.kscience.gradle.common")
id("space.kscience.gradle.native")
2022-07-15 19:13:50 +03:00
}
kotlin.sourceSets.commonMain {
dependencies {
api(projects.kmath.kmathGeometry)
}
}
readme {
2022-07-24 12:01:02 +03:00
description = "Path and trajectory optimization"
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
2022-07-24 12:01:02 +03:00
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
2022-07-15 19:13:50 +03:00
}