Skip to content

Commit 6f673b3

Browse files
committed
Add an Inno Setup based installer script
1 parent 992f9e4 commit 6f673b3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

qt/bibref.iss

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#define BIBREF_VERSION "2024Mar14"
2+
3+
[Setup]
4+
AppName=bibref
5+
AppVersion={#BIBREF_VERSION}
6+
WizardStyle=modern
7+
DefaultDirName={commonpf32}\bibref-qt
8+
DefaultGroupName=bibref
9+
UninstallDisplayIcon={app}\bibref.ico
10+
Compression=lzma2
11+
SolidCompression=yes
12+
OutputBaseFilename=bibref-setup
13+
14+
[Files]
15+
Source: "bibref-qt-{#BIBREF_VERSION}\*.*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs
16+
17+
[Icons]
18+
Name: "{group}\bibref-qt"; Filename: "{app}\start.bat"; IconFilename: "{app}\bibref.ico"
19+
Name: "{group}\Uninstall bibref"; Filename: "{uninstallexe}"; IconFilename: "{app}\bibref.ico"
20+
Name: "{autoprograms}\bibref-qt"; Filename: "{app}\start.bat"; IconFilename: "{app}\bibref.ico"
21+
Name: "{autodesktop}\bibref-qt"; Filename: "{app}\start.bat"; IconFilename: "{app}\bibref.ico"
22+
23+
[Run]
24+
Filename: {app}\start.bat; Description: Start bibref now; Flags: postinstall nowait skipifsilent

0 commit comments

Comments
 (0)