44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
#define MyAppName "Anonymisation"
|
|
#define MyAppPublisher "CHCB"
|
|
#define MyAppExeName "Anonymisation.exe"
|
|
#ifndef AppVersion
|
|
#define AppVersion "1.0.0"
|
|
#endif
|
|
|
|
[Setup]
|
|
AppId={{6D11E4F8-26D8-4CFB-9F19-5A81E0637F56}
|
|
AppName={#MyAppName}
|
|
AppVersion={#AppVersion}
|
|
AppPublisher={#MyAppPublisher}
|
|
DefaultDirName={localappdata}\Programs\{#MyAppName}
|
|
DefaultGroupName={#MyAppName}
|
|
DisableDirPage=no
|
|
DisableProgramGroupPage=no
|
|
PrivilegesRequired=lowest
|
|
OutputDir=..\release
|
|
OutputBaseFilename=Anonymisation-Setup
|
|
SetupIconFile=..\assets\icons\app.ico
|
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
|
Compression=lzma2
|
|
SolidCompression=yes
|
|
WizardStyle=modern
|
|
ArchitecturesAllowed=x64compatible
|
|
ArchitecturesInstallIn64BitMode=x64compatible
|
|
|
|
[Languages]
|
|
Name: "french"; MessagesFile: "compiler:Languages\French.isl"
|
|
|
|
[Tasks]
|
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: checkedonce
|
|
|
|
[Files]
|
|
Source: "..\release\Anonymisation-Windows\Anonymisation.exe"; DestDir: "{app}"; Flags: ignoreversion
|
|
Source: "..\release\Anonymisation-Windows\README.txt"; DestDir: "{app}"; Flags: ignoreversion skipifsourcedoesntexist
|
|
|
|
[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
|