2023-11-13 21:45:37 +03:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
2023-12-05 16:39:15 +03:00
|
|
|
alias(spclibs.plugins.compose)
|
2023-11-13 21:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kscience{
|
|
|
|
jvm()
|
|
|
|
js()
|
|
|
|
// wasm()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
// android()
|
|
|
|
sourceSets {
|
2023-12-18 09:41:05 +03:00
|
|
|
commonMain{
|
|
|
|
dependencies{
|
|
|
|
api(projects.visionforgeCore)
|
2023-11-13 21:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val jvmMain by getting {
|
|
|
|
dependencies {
|
|
|
|
api(compose.runtime)
|
|
|
|
api(compose.foundation)
|
|
|
|
api(compose.material)
|
|
|
|
api(compose.preview)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val jsMain by getting{
|
|
|
|
dependencies {
|
|
|
|
api(compose.html.core)
|
|
|
|
api("app.softwork:bootstrap-compose:0.1.15")
|
|
|
|
api("app.softwork:bootstrap-compose-icons:0.1.15")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|