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-04-20 12:13:43 +03:00
|
|
|
jsMain {
|
2023-11-13 21:45:37 +03:00
|
|
|
dependencies {
|
2024-04-20 12:13:43 +03:00
|
|
|
implementation(npm("bootstrap", "5.3.3"))
|
|
|
|
implementation(npm(" bootstrap-icons", "1.11.3"))
|
|
|
|
api("com.benasher44:uuid:0.8.4")
|
2024-02-12 20:04:10 +03:00
|
|
|
api(compose.html.core)
|
2023-11-13 21:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|