forked from kscience/kmath
20 lines
388 B
Plaintext
20 lines
388 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
kscience{
|
|
native()
|
|
}
|
|
|
|
kotlin.sourceSets.commonMain {
|
|
dependencies {
|
|
api(projects.kmath.kmathGeometry)
|
|
}
|
|
}
|
|
|
|
readme {
|
|
description = "Path and trajectory optimization"
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
}
|