From ddd57603bcc57801b594e1c74d4684f47bef5837 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sat, 25 Sep 2021 15:07:55 +0530 Subject: [PATCH] desktop: configure distribution properties --- desktop/build.gradle.kts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/desktop/build.gradle.kts b/desktop/build.gradle.kts index 223dca9e..a2e9241d 100644 --- a/desktop/build.gradle.kts +++ b/desktop/build.gradle.kts @@ -29,10 +29,15 @@ kotlin { compose.desktop { application { mainClass = "MainKt" + jvmArgs += listOf("-Xmx1G") nativeDistributions { targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) - packageName = "jvm" + packageName = "Claw" 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 } } }