2023-10-25 22:31:36 +03:00
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
|
|
|
description = """
|
2023-10-28 14:18:00 +03:00
|
|
|
A low-code constructor for composite devices simulation
|
2023-10-25 22:31:36 +03:00
|
|
|
""".trimIndent()
|
|
|
|
|
|
|
|
kscience{
|
|
|
|
jvm()
|
|
|
|
js()
|
2024-05-10 11:33:00 +03:00
|
|
|
useCoroutines()
|
2024-05-29 22:20:22 +03:00
|
|
|
useSerialization()
|
2024-05-10 11:33:00 +03:00
|
|
|
commonMain {
|
2023-10-25 22:31:36 +03:00
|
|
|
api(projects.controlsCore)
|
|
|
|
}
|
2024-05-10 11:33:00 +03:00
|
|
|
|
|
|
|
commonTest{
|
|
|
|
implementation(spclibs.logback.classic)
|
|
|
|
}
|
2023-10-25 22:31:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
|
|
|
}
|