Skip to content

Commit

Permalink
Desktop icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jdamcd committed Jan 16, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 6432060 commit cf328f1
Showing 4 changed files with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -20,10 +20,19 @@ compose.desktop {
mainClass = "com.jdamcd.arrivals.desktop.MainKt"

nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
includeAllModules = true
packageName = "ArrivalsDesktop"
packageVersion = "1.0.0"
targetFormats(TargetFormat.Dmg, TargetFormat.Deb, TargetFormat.Msi)
macOS {
iconFile.set(project.file("icon.icns"))
}
linux {
iconFile.set(project.file("icon.png"))
}
windows {
iconFile.set(project.file("icon.ico"))
}
}
}
}
Binary file added desktop/icon.icns
Binary file not shown.
Binary file added desktop/icon.ico
Binary file not shown.
Binary file added desktop/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cf328f1

Please sign in to comment.