2020-12-28 22:39:37 +03:00
|
|
|
plugins {
|
2021-02-23 21:47:18 +03:00
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
2020-12-28 22:39:37 +03:00
|
|
|
}
|
|
|
|
|
2021-08-13 22:14:43 +03:00
|
|
|
val plotlyVersion = "0.5.0"
|
2021-02-16 14:49:15 +03:00
|
|
|
|
2021-05-05 15:28:06 +03:00
|
|
|
kscience {
|
2020-12-28 22:39:37 +03:00
|
|
|
useSerialization()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
2021-05-05 15:28:06 +03:00
|
|
|
js {
|
2022-01-02 19:43:31 +03:00
|
|
|
binaries.library()
|
2021-01-12 12:52:22 +03:00
|
|
|
}
|
|
|
|
|
2020-12-28 22:39:37 +03:00
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":visionforge-core"))
|
2021-03-07 16:19:43 +03:00
|
|
|
api("space.kscience:plotlykt-core:${plotlyVersion}")
|
2020-12-28 22:39:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|