Skip to content

Commit

Permalink
Merge pull request #1 from nomandhoni-cs/build-file
Browse files Browse the repository at this point in the history
Added Build ```.iss``` file for Inno Setup
  • Loading branch information
nomandhoni-cs authored Jan 29, 2024
2 parents 14c77ab + 289e88d commit c644e90
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions BuildFileForInnoSetup.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Blink Eye"
#define MyAppVersion "1.1"
#define MyAppPublisher "Noman Dhoni"
#define MyAppURL "https://blinkeye.vercel.app"
#define MyAppExeName "BlinkEye.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={{20148192-D3BB-4BFD-ACD6-E96DF5E4E50D}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
LicenseFile=C:\Users\Abdullah\Desktop\blink-eye\dist\LICENSE.txt
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputDir=C:\Users\Abdullah\Desktop\New folder
OutputBaseFilename=Blink_Eye_Windows_64_V1.1
SetupIconFile=C:\Users\Abdullah\Desktop\blink-eye\logo.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: "C:\Users\Abdullah\Desktop\blink-eye\dist\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\Abdullah\Desktop\blink-eye\logo.png"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\Abdullah\Desktop\blink-eye\logo.ico"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\Users\Abdullah\Desktop\blink-eye\reminder-btn.png"; DestDir: "{app}"; Flags: ignoreversion
; 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

0 comments on commit c644e90

Please sign in to comment.