kmath/kmath-trajectory/build.gradle.kts

18 lines
423 B
Plaintext
Raw Normal View History

2022-07-15 19:13:50 +03:00
plugins {
kotlin("multiplatform")
id("ru.mipt.npm.gradle.common")
id("ru.mipt.npm.gradle.native")
}
kotlin.sourceSets.commonMain {
dependencies {
api(projects.kmath.kmathGeometry)
}
}
readme {
2022-07-24 12:01:02 +03:00
description = "Path and trajectory optimization"
2022-07-15 19:13:50 +03:00
maturity = ru.mipt.npm.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
}