diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-04-22 13:23:57 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-04-22 13:23:57 +1000 |
commit | ad72057c38096a8d60086ddccc251dfcbcdb9d91 (patch) | |
tree | 38f58c9625584b4e00f8cd88c4080151c465df6f /scripts/inno/setup.iss | |
parent | 52dae03aae84afa78a9dbfc68976e99fd1b20ee2 (diff) |
Add server icon and fix Installer shortcuts
Diffstat (limited to 'scripts/inno/setup.iss')
-rw-r--r-- | scripts/inno/setup.iss | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/inno/setup.iss b/scripts/inno/setup.iss index a28be34..7848a73 100644 --- a/scripts/inno/setup.iss +++ b/scripts/inno/setup.iss @@ -4,6 +4,7 @@ #define AppName "OpenStarbound" #define AppVersion "1.0" #define AppExeName "starbound.exe" +#define AppServerExeName "starbound_server.exe" [Setup] SourceDir={#SourcePath}\..\..\ @@ -42,8 +43,12 @@ Source: "windows\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs creat Name: "{app}"; Permissions: users-modify [Icons] -Name: "{autoprograms}\{#AppName}"; Filename: "{app}\{#AppExeName}" -Name: "{autodesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Tasks: desktopicon +; Client +Name: "{autoprograms}\{#AppName}"; Filename: "{app}\win\{#AppExeName}" +Name: "{autodesktop}\{#AppName}"; Filename: "{app}\win\{#AppExeName}"; Tasks: desktopicon +; Server +Name: "{autoprograms}\{#AppName} Server"; Filename: "{app}\win\{#AppServerExeName}" +Name: "{autodesktop}\{#AppName} Server"; Filename: "{app}\win\{#AppServerExeName}"; Tasks: desktopicon [Run] Filename: "{app}\win\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |