mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Windows installers now support Oscar, Oscar (test), Oscar 32-bit, and Oscar 32-bit (test). First two are 64-bit.
This commit is contained in:
parent
e315baf6df
commit
8a98cf1400
@ -7,29 +7,45 @@
|
|||||||
|
|
||||||
#define MyAppVersion MyMajorVersion+"."+MyMinorVersion+"."+MyRevision+"-"+MyReleaseStatus
|
#define MyAppVersion MyMajorVersion+"."+MyMinorVersion+"."+MyRevision+"-"+MyReleaseStatus
|
||||||
#if MyReleaseStatus == "r"
|
#if MyReleaseStatus == "r"
|
||||||
#define MyAppVersion MyAppVersion+MyBuildNumber
|
#define MyAppVersion MyAppVersion+MyBuildNumber
|
||||||
#else
|
#else
|
||||||
#define MyAppVersion MyAppVersion+"-"+MyBuildNumber
|
#define MyAppVersion MyAppVersion+"-"+MyBuildNumber
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MyAppName "OSCAR"
|
|
||||||
#define MyAppPublisher "The OSCAR Team"
|
#define MyAppPublisher "The OSCAR Team"
|
||||||
#define MyAppExeName "OSCAR.exe"
|
#define MyAppExeName "OSCAR.exe"
|
||||||
|
#define MyAppName "OSCAR"
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
SetupLogging=yes
|
SetupLogging=yes
|
||||||
; NOTE: The value of AppId uniquely identifies this application.
|
; NOTE: The value of AppId uniquely identifies this application.
|
||||||
; Do not use the same AppId value in installers for other applications.
|
; Do not use the same AppId value in installers for other applications.
|
||||||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||||
; Now using separate AppID for Win32 and Win64 -- GTS 4/6/2019
|
; Now using separate AppID for Win32 and Win64 and for test builds -- GTS 4/6/2019
|
||||||
#if MyPlatform == "Win64"
|
#if MyPlatform == "Win64"
|
||||||
ArchitecturesAllowed=x64
|
ArchitecturesAllowed=x64
|
||||||
ArchitecturesInstallIn64BitMode=x64
|
ArchitecturesInstallIn64BitMode=x64
|
||||||
|
#if MyReleaseStatus == "r" || MyReleaseStatus == "rc"
|
||||||
AppId={{FC6F08E6-69BF-4469-ADE3-78199288D305}
|
AppId={{FC6F08E6-69BF-4469-ADE3-78199288D305}
|
||||||
|
#define MyGroupName "OSCAR"
|
||||||
|
#define MyDirName "OSCAR"
|
||||||
|
#else
|
||||||
|
AppId={{C5E23210-4BC5-499D-A0E4-81192748D322}
|
||||||
|
#define MyGroupName "OSCAR (test)"
|
||||||
|
#define MyDirName "OSCAR-test"
|
||||||
|
#endif
|
||||||
; DefaultDirName={%PROGRAMFILES|{pf}}\OSCAR
|
; DefaultDirName={%PROGRAMFILES|{pf}}\OSCAR
|
||||||
; above doesn't work. Always returns x86 directory
|
; above doesn't work. Always returns x86 directory
|
||||||
#else // 32-bit
|
#else // 32-bit
|
||||||
|
#if MyReleaseStatus == "r" || MyReleaseStatus == "rc"
|
||||||
AppId={{4F3EB81B-1866-4124-B388-5FB5DA34FFDD}
|
AppId={{4F3EB81B-1866-4124-B388-5FB5DA34FFDD}
|
||||||
|
#define MyGroupName "OSCAR 32-bit"
|
||||||
|
#define MyDirName "OSCAR"
|
||||||
|
#else
|
||||||
|
AppId={{B0382AB3-ECB4-4F9D-ABB1-F6EF73D4E3DB}
|
||||||
|
#define MyGroupName "OSCAR 32-bit (test)"
|
||||||
|
#define MyDirName "OSCAR-test"
|
||||||
|
#endif
|
||||||
; DefaultDirName={%PROGRAMFILES(X86)|{pf}}\OSCAR
|
; DefaultDirName={%PROGRAMFILES(X86)|{pf}}\OSCAR
|
||||||
#endif
|
#endif
|
||||||
AppName={#MyAppName}
|
AppName={#MyAppName}
|
||||||
@ -38,20 +54,20 @@ AppVerName={#MyAppName} {#MyAppVersion}-{#MyPlatform}-{#MyGitRevision}{#MySuffix
|
|||||||
AppPublisher={#MyAppPublisher}
|
AppPublisher={#MyAppPublisher}
|
||||||
AppCopyright=Copyright 2019 {#MyAppPublisher}
|
AppCopyright=Copyright 2019 {#MyAppPublisher}
|
||||||
; **** AppCopyright=Copyright {GetDateTimeString('yyyy', #0, #0)} {%MyAppPublisher}
|
; **** AppCopyright=Copyright {GetDateTimeString('yyyy', #0, #0)} {%MyAppPublisher}
|
||||||
DefaultDirName={pf}\OSCAR
|
DefaultDirName={pf}\{#MyDirName}
|
||||||
DefaultGroupName={#MyAppName}
|
DefaultGroupName={#MyGroupName}
|
||||||
OutputDir=.\Installer
|
OutputDir=.\Installer
|
||||||
#if MyReleaseStatus == "r"
|
#if MyReleaseStatus == "r"
|
||||||
OutputBaseFilename={#MyAppName}-{#MyAppVersion}-{#MyPlatform}{#MySuffix}
|
OutputBaseFilename={#MyAppName}-{#MyAppVersion}-{#MyPlatform}{#MySuffix}
|
||||||
#else
|
#else
|
||||||
OutputBaseFilename={#MyAppName}-{#MyAppVersion}-{#MyPlatform}-{#MyGitRevision}{#MySuffix}
|
OutputBaseFilename={#MyAppName}-{#MyAppVersion}-{#MyPlatform}-{#MyGitRevision}{#MySuffix}
|
||||||
#endif
|
#endif
|
||||||
SetupIconFile=setup.ico
|
SetupIconFile=setup.ico
|
||||||
Compression=lzma
|
Compression=lzma
|
||||||
SolidCompression=yes
|
SolidCompression=yes
|
||||||
VersionInfoCompany={#MyAppPublisher}
|
VersionInfoCompany={#MyAppPublisher}
|
||||||
VersionInfoProductName={#MyAppName}
|
VersionInfoProductName={#MyAppName}
|
||||||
UninstallDisplayName={#MyAppName}
|
UninstallDisplayName={#MyGroupName}
|
||||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
@ -89,9 +105,9 @@ Source: ".\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs cre
|
|||||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
Name: "{group}\{#MyGroupName}"; Filename: "{app}\{#MyAppExeName}"
|
||||||
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
|
Name: "{group}\{cm:UninstallProgram,{#MyGroupName}}"; Filename: "{uninstallexe}"
|
||||||
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
Name: "{commondesktop}\{#MyGroupName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||||||
; Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
|
; Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon
|
||||||
|
|
||||||
[Messages]
|
[Messages]
|
||||||
|
Loading…
Reference in New Issue
Block a user