-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an Inno Setup based installer script
- Loading branch information
1 parent
992f9e4
commit 6f673b3
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#define BIBREF_VERSION "2024Mar14" | ||
|
||
[Setup] | ||
AppName=bibref | ||
AppVersion={#BIBREF_VERSION} | ||
WizardStyle=modern | ||
DefaultDirName={commonpf32}\bibref-qt | ||
DefaultGroupName=bibref | ||
UninstallDisplayIcon={app}\bibref.ico | ||
Compression=lzma2 | ||
SolidCompression=yes | ||
OutputBaseFilename=bibref-setup | ||
|
||
[Files] | ||
Source: "bibref-qt-{#BIBREF_VERSION}\*.*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs | ||
|
||
[Icons] | ||
Name: "{group}\bibref-qt"; Filename: "{app}\start.bat"; IconFilename: "{app}\bibref.ico" | ||
Name: "{group}\Uninstall bibref"; Filename: "{uninstallexe}"; IconFilename: "{app}\bibref.ico" | ||
Name: "{autoprograms}\bibref-qt"; Filename: "{app}\start.bat"; IconFilename: "{app}\bibref.ico" | ||
Name: "{autodesktop}\bibref-qt"; Filename: "{app}\start.bat"; IconFilename: "{app}\bibref.ico" | ||
|
||
[Run] | ||
Filename: {app}\start.bat; Description: Start bibref now; Flags: postinstall nowait skipifsilent |