2023-12-18 00:01:45 +01:00
|
|
|
plugins {
|
2024-12-08 10:25:00 +01:00
|
|
|
id("com.livefast.eattrash.kotlinMultiplatform")
|
|
|
|
id("com.livefast.eattrash.composeMultiplatform")
|
2023-12-18 00:01:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
val commonMain by getting {
|
|
|
|
dependencies {
|
2024-12-30 08:37:07 +01:00
|
|
|
implementation(libs.compose.colorpicker)
|
2023-12-18 00:01:45 +01:00
|
|
|
implementation(libs.voyager.navigator)
|
|
|
|
|
2023-12-20 00:45:20 +01:00
|
|
|
implementation(projects.core.appearance)
|
|
|
|
implementation(projects.core.commonui.components)
|
2023-12-22 13:48:34 +01:00
|
|
|
implementation(projects.core.commonui.lemmyui)
|
2024-02-13 22:37:13 +01:00
|
|
|
implementation(projects.core.l10n)
|
2023-12-20 00:45:20 +01:00
|
|
|
implementation(projects.core.navigation)
|
|
|
|
implementation(projects.core.notifications)
|
2024-02-13 22:37:13 +01:00
|
|
|
implementation(projects.core.persistence)
|
2024-04-10 19:49:47 +02:00
|
|
|
implementation(projects.core.resources)
|
2024-02-13 22:37:13 +01:00
|
|
|
implementation(projects.core.utils)
|
2023-12-22 13:48:34 +01:00
|
|
|
|
2023-12-20 00:45:20 +01:00
|
|
|
implementation(projects.domain.lemmy.data)
|
2023-12-18 00:01:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-15 08:32:32 +02:00
|
|
|
}
|