2024-02-16 18:21:09 +03:00
|
|
|
import space.kscience.gradle.Maturity
|
|
|
|
|
2024-02-12 16:44:15 +03:00
|
|
|
plugins {
|
|
|
|
id("space.kscience.gradle.mpp")
|
|
|
|
alias(spclibs.plugins.compose)
|
|
|
|
}
|
|
|
|
|
|
|
|
kscience {
|
|
|
|
jvm()
|
2024-02-12 20:04:10 +03:00
|
|
|
// wasm()
|
2024-02-12 16:44:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
// android()
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api(projects.visionforgeCore)
|
|
|
|
api(compose.foundation)
|
2024-02-16 18:21:09 +03:00
|
|
|
api(compose.runtime)
|
|
|
|
api(compose.material)
|
|
|
|
api(compose.materialIconsExtended)
|
2024-02-12 20:04:10 +03:00
|
|
|
}
|
|
|
|
}
|
2024-02-16 18:21:09 +03:00
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
implementation("com.eygraber:compose-color-picker:0.0.17")
|
2024-02-12 16:44:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-02-16 18:21:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
maturity = Maturity.EXPERIMENTAL
|
2024-02-12 16:44:15 +03:00
|
|
|
}
|