Hello,
Is there a way to add options to the windows installer to add desktop and start menu shortcuts?
I have to manually find the app in program files to run it because it can't be found easily in the windows searchbar
k
Kebbin
03/19/2022, 3:02 AM
Be interested to see what comes of this, as I'm at the stage of setting this up too. I imagine it might be in the Gradle build script, so if I find something I'll post it here.
👍🏻 1
r
rcd27
03/23/2022, 1:48 PM
Yes, this is my `build.gradle.kts`:
Copy code
compose.desktop {
...
application {
...
nativeDistributions {
...
windows {
...
shortcut = true // adds shortcut to Windows desktop
}
}
}
}
😎 1
j
Jacob Ras
04/11/2024, 9:53 AM
For those also finding this through search: adding