mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 14:34:12 +02:00
72 lines
2.0 KiB
Plaintext
72 lines
2.0 KiB
Plaintext
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
plugins {
|
|
alias(libs.plugins.kotlinMultiplatform)
|
|
|
|
alias(libs.plugins.jetbrainsCompose)
|
|
}
|
|
|
|
kotlin {
|
|
jvm("desktop")
|
|
jvmToolchain(21)
|
|
|
|
sourceSets {
|
|
val desktopMain by getting
|
|
|
|
commonMain.dependencies {
|
|
implementation(compose.runtime)
|
|
implementation(compose.foundation)
|
|
implementation(compose.material)
|
|
implementation(compose.ui)
|
|
implementation(compose.components.resources)
|
|
implementation(compose.components.uiToolingPreview)
|
|
implementation(projects.shared)
|
|
}
|
|
desktopMain.dependencies {
|
|
implementation(compose.desktop.currentOs)
|
|
implementation("org.jetbrains.compose.material3:material3-desktop:1.6.1")
|
|
|
|
// Voyager - Navigation
|
|
val voyagerVersion = "1.0.0"
|
|
|
|
// Multiplatform
|
|
|
|
// Navigator
|
|
implementation("cafe.adriel.voyager:voyager-navigator:$voyagerVersion")
|
|
|
|
// Screen Model
|
|
implementation("cafe.adriel.voyager:voyager-screenmodel:$voyagerVersion")
|
|
|
|
// BottomSheetNavigator
|
|
implementation("cafe.adriel.voyager:voyager-bottom-sheet-navigator:$voyagerVersion")
|
|
|
|
// TabNavigator
|
|
implementation("cafe.adriel.voyager:voyager-tab-navigator:$voyagerVersion")
|
|
|
|
// Transitions
|
|
implementation("cafe.adriel.voyager:voyager-transitions:$voyagerVersion")
|
|
|
|
// Desktop + Android
|
|
|
|
// Kodein integration
|
|
implementation("cafe.adriel.voyager:voyager-kodein:$voyagerVersion")
|
|
|
|
// RxJava integration
|
|
implementation("cafe.adriel.voyager:voyager-rxjava:$voyagerVersion")
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "MainKt"
|
|
|
|
nativeDistributions {
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
packageName = "io.anthonyberg.connector"
|
|
packageVersion = "1.0.0"
|
|
}
|
|
}
|
|
}
|