mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
pkgs: Generate Inno Setup based Windows installer
This commit is contained in:
31
pkgs/windows-installer/clapper.iss.in
Normal file
31
pkgs/windows-installer/clapper.iss.in
Normal file
@@ -0,0 +1,31 @@
|
||||
[Setup]
|
||||
AppName=Clapper
|
||||
AppVersion=@CLAPPER_APP_VERSION@
|
||||
AppVerName=Clapper @CLAPPER_APP_VERSION@
|
||||
VersionInfoVersion=@CLAPPER_APP_VERSION@.0
|
||||
ArchitecturesAllowed=x64compatible
|
||||
ArchitecturesInstallIn64BitMode=x64compatible
|
||||
WizardStyle=modern
|
||||
DefaultDirName={autopf}\Clapper
|
||||
DefaultGroupName=Clapper
|
||||
DisableProgramGroupPage=yes
|
||||
ChangesAssociations=yes
|
||||
Compression=lzma2
|
||||
SolidCompression=yes
|
||||
OutputDir=InstallerOutput
|
||||
OutputBaseFilename=Clapper_@CLAPPER_APP_VERSION@
|
||||
SetupIconFile=@PROJECT_ROOT@\src\bin\clapper-app\windows\clapper.ico
|
||||
LicenseFile=@PROJECT_ROOT@\COPYING-GPL
|
||||
|
||||
[Tasks]
|
||||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||||
|
||||
[Files]
|
||||
Source: "@CLAPPER_APP_DEST@\*"; DestDir: "{app}"; Flags: recursesubdirs replacesameversion
|
||||
|
||||
[Icons]
|
||||
Name: "{autoprograms}\Clapper"; Filename: "{app}\bin\clapper.exe"
|
||||
Name: "{autodesktop}\Clapper"; Filename: "{app}\bin\clapper.exe"; Tasks: desktopicon
|
||||
|
||||
[Registry]
|
||||
@CLAPPER_APP_REG_ENTRIES@
|
Reference in New Issue
Block a user