Skip to content

Commit c6c3c04

Browse files
committed
Added gitnuro.iss for windows build
1 parent 27e2745 commit c6c3c04

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

gitnuro.iss

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
; Script generated by the Inno Setup Script Wizard.
2+
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3+
4+
#define MyAppName "Gitnuro"
5+
#define MyAppPublisher "Abdelilah El Aissaoui"
6+
#define MyAppURL "https://gitnuro.com"
7+
#define MyAppExeName "Gitnuro.exe"
8+
9+
[Setup]
10+
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
11+
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
12+
AppId={{FD31523F-5B35-4F12-A65A-0C9E6DC2EE50}
13+
AppName={#MyAppName}
14+
AppVersion={#MyAppVersion}
15+
;AppVerName={#MyAppName} {#MyAppVersion}
16+
AppPublisher={#MyAppPublisher}
17+
AppPublisherURL={#MyAppURL}
18+
AppSupportURL={#MyAppURL}
19+
AppUpdatesURL={#MyAppURL}
20+
DefaultDirName={autopf}\{#MyAppName}
21+
DisableProgramGroupPage=yes
22+
Compression=lzma
23+
OutputBaseFilename={#MyAppName}_Windows_Installer_{#MyAppVersion}
24+
SetupIconFile=build\compose\binaries\main\app\Gitnuro\Gitnuro.ico
25+
SolidCompression=yes
26+
WizardStyle=modern
27+
28+
[Languages]
29+
Name: "english"; MessagesFile: "compiler:Default.isl"
30+
31+
[Tasks]
32+
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
33+
34+
[Files]
35+
Source: "build\compose\binaries\main\app\Gitnuro\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
36+
Source: "build\compose\binaries\main\app\Gitnuro\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
37+
38+
[Icons]
39+
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
40+
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
41+
42+
[Run]
43+
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
44+

0 commit comments

Comments
 (0)