2021-07-21 16:31:17 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.mpp")
|
|
|
|
}
|
|
|
|
|
|
|
|
val markdownVersion = "0.2.4"
|
|
|
|
|
|
|
|
kscience {
|
|
|
|
useSerialization()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js {
|
2022-01-02 19:43:31 +03:00
|
|
|
binaries.library()
|
2021-07-21 16:31:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(project(":visionforge-core"))
|
|
|
|
api("org.jetbrains:markdown:$markdownVersion")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|