28 lines
696 B
Kotlin
28 lines
696 B
Kotlin
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
plugins {
|
|
alias(libs.plugins.kotlinJvm)
|
|
alias(libs.plugins.composeMultiplatform)
|
|
alias(libs.plugins.composeCompiler)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.shared)
|
|
|
|
implementation(compose.desktop.currentOs)
|
|
implementation(libs.kotlinx.coroutinesSwing)
|
|
|
|
implementation(libs.compose.uiToolingPreview)
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "fr.ajaury.gwenedeg.MainKt"
|
|
|
|
nativeDistributions {
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
packageName = "fr.ajaury.gwenedeg"
|
|
packageVersion = "1.0.0"
|
|
}
|
|
}
|
|
} |