mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-06 09:09:44 -06:00
* kmp migration started: shared module added * Drop files from .gitignore * Drop files from .gitignore * Drop files from .gitignore * Drop files from .gitignore * Drop files from .gitignore * Drop files from .gitignore * Drop files from .gitignore * Drop files from .gitignore
38 lines
787 B
Kotlin
38 lines
787 B
Kotlin
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
id("org.jetbrains.compose")
|
|
}
|
|
|
|
group = "com.yogeshpaliyal.keypass"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
|
|
kotlin {
|
|
jvm {
|
|
jvmToolchain(11)
|
|
withJava()
|
|
}
|
|
sourceSets {
|
|
val jvmMain by getting {
|
|
dependencies {
|
|
implementation(project(":common"))
|
|
implementation(compose.desktop.currentOs)
|
|
}
|
|
}
|
|
val jvmTest by getting
|
|
}
|
|
}
|
|
|
|
compose.desktop {
|
|
application {
|
|
mainClass = "MainKt"
|
|
nativeDistributions {
|
|
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
|
|
packageName = "shared"
|
|
packageVersion = "1.0.0"
|
|
}
|
|
}
|
|
}
|