Skip to content

Commit 4e2045e

Browse files
committed
add initial Inno Setup Win installer configuration
1 parent c84b820 commit 4e2045e

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
; -- Slice-Installer.iss --
2+
; Creates a minimal Windows installer for the Slice application
3+
4+
; Copyright (C) 2021 Christopher Simpkins
5+
;
6+
; This program is free software: you can redistribute it and/or modify
7+
; it under the terms of the GNU General Public License as published by
8+
; the Free Software Foundation, either version 3 of the License, or
9+
; (at your option) any later version.
10+
;
11+
; This program is distributed in the hope that it will be useful,
12+
; but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
; GNU General Public License for more details.
15+
;
16+
; You should have received a copy of the GNU General Public License
17+
; along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
19+
20+
[Setup]
21+
AppName=Slice
22+
AppVersion=0.3.0
23+
WizardStyle=modern
24+
DefaultDirName={autopf}\Slice
25+
; Since no icons will be created in "{group}", we don't need the wizard
26+
; to ask for a Start Menu folder name:
27+
DisableProgramGroupPage=yes
28+
UninstallDisplayIcon={app}\Slice.exe
29+
Compression=lzma2
30+
SolidCompression=yes
31+
OutputBaseFilename=Slice-Installer
32+
OutputDir=..\..\dist\Windows-Installer
33+
LicenseFile=..\..\LICENSE
34+
35+
[Files]
36+
Source: "..\..\dist\Slice.exe"; DestDir: "{app}"
37+
38+
[Icons]
39+
Name: "{autoprograms}\Slice"; Filename: "{app}\Slice.exe"

0 commit comments

Comments
 (0)