mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
f072e79bb6
Some checks are pending
Cache Dependencies / test (push) Waiting to run
* some not enough enhancements for sync status * update app versions * minor fix
44 lines
1.5 KiB
Text
44 lines
1.5 KiB
Text
#define MyAppName "Cake Wallet"
|
|
#define MyAppVersion "0.0.6"
|
|
#define MyAppPublisher "Cake Labs LLC"
|
|
#define MyAppURL "https://cakewallet.com/"
|
|
#define MyAppExeName "CakeWallet.exe"
|
|
|
|
[Setup]
|
|
AppId=com.cakewallet.cakewallet
|
|
AppName={#MyAppName}
|
|
AppVersion={#MyAppVersion}
|
|
;AppVerName={#MyAppName} {#MyAppVersion}
|
|
AppPublisher={#MyAppPublisher}
|
|
AppPublisherURL={#MyAppURL}
|
|
AppSupportURL={#MyAppURL}
|
|
AppUpdatesURL={#MyAppURL}
|
|
DefaultDirName={autopf}\CakeWallet
|
|
DisableProgramGroupPage=yes
|
|
LicenseFile=..\..\LICENSE.md
|
|
; Uncomment the following line to run in non administrative install mode (install for current user only.)
|
|
; PrivilegesRequired=lowest
|
|
OutputDir=..\..\
|
|
OutputBaseFilename=cakewallet_setup
|
|
SetupIconFile=..\..\windows\runner\resources\app_icon.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: "..\..\build\windows\x64\runner\Release\*"; 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
|
|
|