desktop: configure distribution properties

This commit is contained in:
Harsh Shandilya 2021-09-25 15:07:55 +05:30
parent be848532ea
commit ddd57603bc
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -29,10 +29,15 @@ kotlin {
compose.desktop { compose.desktop {
application { application {
mainClass = "MainKt" mainClass = "MainKt"
jvmArgs += listOf("-Xmx1G")
nativeDistributions { nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "jvm" packageName = "Claw"
packageVersion = "1.0.0" packageVersion = "1.0.0"
description = "Desktop client for lobste.rs link aggregation site"
copyright = "© 2021 Harsh Shandilya. All rights reserved."
vendor = "Harsh Shandilya"
includeAllModules = false
} }
} }
} }