mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 10:29:58 +02:00
31 lines
688 B
Kotlin
31 lines
688 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.jna)
|
|
|
|
implementation(libs.compose.uiToolingPreview)
|
|
testImplementation(libs.kotlin.testJunit)
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "com.vnidrop.app.MainKt"
|
|
|
|
nativeDistributions {
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
packageName = "com.vnidrop.app"
|
|
packageVersion = "1.0.0"
|
|
}
|
|
}
|
|
}
|