-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'windows_installer' into devel-0.11.x
- Loading branch information
Showing
4 changed files
with
67 additions
and
6 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
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,41 @@ | ||
; Inno Setup template | ||
|
||
#ifndef Version | ||
#error The define variable Version is not set! Use /D Version=value to set it. | ||
#endif | ||
|
||
#define Organization "HEPHY" | ||
#define Name "SQC" | ||
#define ExeName "sqc.exe" | ||
|
||
[Setup] | ||
AppId={#Organization}_{#Name}_{#Version} | ||
AppName={#Name} | ||
AppVersion={#Version} | ||
AppPublisher=HEPHY Detector Development | ||
AppPublisherURL=https://github.com/hephy-dd/ | ||
DefaultDirName={userappdata}\{#Organization}\sqc\{#Version} | ||
DefaultGroupName={#Name} | ||
OutputDir=dist | ||
OutputBaseFilename=sqc-{#Version}-win-x64-setup | ||
SetupIconFile=src\sqc\assets\icons\sqc.ico | ||
UninstallDisplayIcon={app}\{#ExeName} | ||
Compression=lzma | ||
SolidCompression=yes | ||
PrivilegesRequired=lowest | ||
|
||
[Files] | ||
Source: "dist\sqc\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs | ||
|
||
[Icons] | ||
Name: "{userdesktop}\{#Name} {#Version}"; Filename: "{app}\{#ExeName}" | ||
Name: "{group}\{#Name} {#Version}"; Filename: "{app}\{#ExeName}"; WorkingDir: "{app}" | ||
|
||
[Run] | ||
Filename: "{app}\{#ExeName}"; Description: "{cm:LaunchProgram,{#Name} {#Version}}"; Flags: nowait postinstall skipifsilent | ||
|
||
[UninstallDelete] | ||
Type: filesandordirs; Name: "{app}" | ||
|
||
[UninstallRun] | ||
Filename: "{app}\uninstall.exe" |
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
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