2019-03-08 11:55:01 +03:00
|
|
|
plugins {
|
2022-08-12 22:16:06 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
|
|
|
|
2023-06-03 17:55:27 +03:00
|
|
|
val kmathVersion = "0.3.1"
|
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
kscience {
|
|
|
|
jvm()
|
|
|
|
js()
|
2023-05-16 21:12:24 +03:00
|
|
|
native()
|
2024-02-16 18:21:09 +03:00
|
|
|
// wasm()
|
2023-05-14 18:33:30 +03:00
|
|
|
useSerialization {
|
2022-01-07 12:29:43 +03:00
|
|
|
json()
|
|
|
|
}
|
2023-05-29 21:38:30 +03:00
|
|
|
useCoroutines()
|
2023-05-14 18:33:30 +03:00
|
|
|
dependencies {
|
2023-06-03 17:55:27 +03:00
|
|
|
api("space.kscience:kmath-geometry:0.3.1")
|
2023-05-14 18:33:30 +03:00
|
|
|
api(projects.visionforgeCore)
|
|
|
|
}
|
|
|
|
dependencies(jvmTest) {
|
|
|
|
implementation(spclibs.logback.classic)
|
2019-03-08 11:55:01 +03:00
|
|
|
}
|
2022-01-07 12:29:43 +03:00
|
|
|
}
|
|
|
|
|
2023-05-14 18:33:30 +03:00
|
|
|
readme {
|
2022-08-12 22:16:06 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
2020-10-02 19:09:25 +03:00
|
|
|
}
|