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
|
|
|
}
|
|
|
|
|
2023-12-27 12:01:55 +03:00
|
|
|
kscience {
|
2023-11-13 21:45:37 +03:00
|
|
|
js()
|
2024-02-12 20:04:10 +03:00
|
|
|
jvm()
|
2023-11-13 21:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
// android()
|
|
|
|
sourceSets {
|
2023-12-27 12:01:55 +03:00
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2023-12-18 09:41:05 +03:00
|
|
|
api(projects.visionforgeCore)
|
2024-02-16 18:21:09 +03:00
|
|
|
//need this to placate compose compiler in MPP applications
|
2024-02-12 20:04:10 +03:00
|
|
|
api(compose.runtime)
|
2023-11-13 21:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-12 20:04:10 +03:00
|
|
|
jsMain{
|
2023-11-13 21:45:37 +03:00
|
|
|
dependencies {
|
|
|
|
api("app.softwork:bootstrap-compose:0.1.15")
|
|
|
|
api("app.softwork:bootstrap-compose-icons:0.1.15")
|
2024-03-14 09:04:54 +03:00
|
|
|
implementation(compose.html.svg)
|
2024-02-12 20:04:10 +03:00
|
|
|
|
|
|
|
api(compose.html.core)
|
2023-11-13 21:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|