18 lines
310 B
Plaintext
18 lines
310 B
Plaintext
|
plugins {
|
||
|
id("space.kscience.gradle.mpp")
|
||
|
}
|
||
|
|
||
|
kscience {
|
||
|
jvm()
|
||
|
js()
|
||
|
native()
|
||
|
wasm()
|
||
|
}
|
||
|
|
||
|
readme {
|
||
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
||
|
description = """
|
||
|
An API and basic implementation for arranging objects in a continuous memory block.
|
||
|
""".trimIndent()
|
||
|
}
|