-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.iss
34 lines (27 loc) · 1.03 KB
/
setup.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
; Inno Setup Script for creating an installer
[Setup]
; Required settings
AppName=FreeScribe
AppVersion=0.0.1
DefaultDirName={userappdata}\FreeScribe
DefaultGroupName=FreeScribe
OutputDir=output
OutputBaseFilename=FreeScribeInstaller
Compression=lzma
SolidCompression=yes
DisableDirPage=yes
DisableProgramGroupPage=yes
[Files]
; Source: is where your PyInstaller output executable is located
; Destination: where the file will be placed during installation
Source: "dist\client.exe"; DestDir: "{app}"; Flags: ignoreversion
[Icons]
; Create a shortcut for the application in the Start Menu and Desktop
Name: "{group}\FreeScribe"; Filename: "{app}\client.exe"
Name: "{userdesktop}\FreeScribe"; Filename: "{app}\client.exe"; Tasks: desktopicon
[Tasks]
; Option to create a desktop shortcut
Name: "desktopicon"; Description: "Create a &desktop icon"; GroupDescription: "Additional icons:"; Flags: unchecked
[Run]
; Run the application after install
Filename: "{app}\client.exe"; Description: "Launch My Application"; Flags: nowait postinstall skipifsilent