52 lines
1.9 KiB
Plaintext
52 lines
1.9 KiB
Plaintext
|
; Script generated by the Inno Setup Script Wizard.
|
||
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||
|
|
||
|
#define MyAppName "Jump Game"
|
||
|
#define MyAppVersion "0.1"
|
||
|
#define MyAppPublisher "NiceCat Studios"
|
||
|
#define MyAppURL "https://nicecat.wgi.fi"
|
||
|
#define MyAppExeName "Jump Game.exe"
|
||
|
|
||
|
[Setup]
|
||
|
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
|
||
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||
|
AppId={{79E2C289-D8AF-4C06-9433-BCCACD655A25}
|
||
|
AppName={#MyAppName}
|
||
|
AppVersion={#MyAppVersion}
|
||
|
;AppVerName={#MyAppName} {#MyAppVersion}
|
||
|
AppPublisher={#MyAppPublisher}
|
||
|
AppPublisherURL={#MyAppURL}
|
||
|
AppSupportURL={#MyAppURL}
|
||
|
AppUpdatesURL={#MyAppURL}
|
||
|
DefaultDirName={autopf}\NiceCat Studios
|
||
|
DisableProgramGroupPage=yes
|
||
|
LicenseFile=../LICENSE
|
||
|
; Remove the following line to run in administrative install mode (install for all users.)
|
||
|
PrivilegesRequired=lowest
|
||
|
PrivilegesRequiredOverridesAllowed=dialog
|
||
|
OutputDir=..\Inno Setup
|
||
|
OutputBaseFilename=Installer
|
||
|
SetupIconFile=app.ico
|
||
|
Compression=lzma
|
||
|
SolidCompression=yes
|
||
|
WizardStyle=modern
|
||
|
|
||
|
[Languages]
|
||
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||
|
|
||
|
[Tasks]
|
||
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||
|
|
||
|
[Files]
|
||
|
Source: "..\Jump Game\Build\Jump Game.exe"; DestDir: "{app}"; Flags: ignoreversion
|
||
|
Source: "..\Jump Game\Build\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||
|
|
||
|
[Icons]
|
||
|
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||
|
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||
|
|
||
|
[Run]
|
||
|
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||
|
|