mirror of https://github.com/debauchee/barrier.git
Add version info resource to windows setup exe
This commit is contained in:
parent
91baa4f133
commit
2c5cdf1037
|
@ -1,7 +1,9 @@
|
||||||
#define MyAppName "Barrier"
|
#define MyAppName "Barrier"
|
||||||
#define MyAppVersion "@BARRIER_VERSION@"
|
#define MyAppVersion "@BARRIER_VERSION_MAJOR@.@BARRIER_VERSION_MINOR@.@BARRIER_VERSION_PATCH@.@BARRIER_BUILD_NUMBER@"
|
||||||
|
#define MyAppTextVersion "@BARRIER_VERSION@"
|
||||||
#define MyAppPublisher "Debauchee Open Source Group"
|
#define MyAppPublisher "Debauchee Open Source Group"
|
||||||
#define MyAppURL "https://github.com/debauchee/barrier/wiki"
|
#define MyAppURL "https://github.com/debauchee/barrier/wiki"
|
||||||
|
#define MyAppCopyright "Copyright (C) 2018 Debauchee Open Source Group"
|
||||||
#define MyAppExeName "barrier.exe"
|
#define MyAppExeName "barrier.exe"
|
||||||
#define MyAppServiceName "Barrier"
|
#define MyAppServiceName "Barrier"
|
||||||
#define MyAppServiceExe "barrierd.exe"
|
#define MyAppServiceExe "barrierd.exe"
|
||||||
|
@ -11,8 +13,8 @@
|
||||||
[Setup]
|
[Setup]
|
||||||
AppId={{41036EA6-3F7A-4803-8AE0-469E5E91EFCC}
|
AppId={{41036EA6-3F7A-4803-8AE0-469E5E91EFCC}
|
||||||
AppName={#MyAppName}
|
AppName={#MyAppName}
|
||||||
AppVersion={#MyAppVersion}
|
AppVersion={#MyAppTextVersion}
|
||||||
AppVerName={#MyAppName} {#MyAppVersion}
|
AppVerName={#MyAppName} {#MyAppTextVersion}
|
||||||
AppPublisher={#MyAppPublisher}
|
AppPublisher={#MyAppPublisher}
|
||||||
AppPublisherURL={#MyAppURL}
|
AppPublisherURL={#MyAppURL}
|
||||||
AppSupportURL={#MyAppURL}
|
AppSupportURL={#MyAppURL}
|
||||||
|
@ -21,12 +23,18 @@ DefaultDirName={pf}\{#MyAppName}
|
||||||
DisableProgramGroupPage=yes
|
DisableProgramGroupPage=yes
|
||||||
LicenseFile=@CMAKE_CURRENT_SOURCE_DIR@/res/License.rtf
|
LicenseFile=@CMAKE_CURRENT_SOURCE_DIR@/res/License.rtf
|
||||||
OutputDir=@CMAKE_RUNTIME_OUTPUT_DIRECTORY@/../installer-inno/bin
|
OutputDir=@CMAKE_RUNTIME_OUTPUT_DIRECTORY@/../installer-inno/bin
|
||||||
OutputBaseFilename=BarrierSetup-{#MyAppVersion}
|
OutputBaseFilename=BarrierSetup-{#MyAppTextVersion}
|
||||||
SetupIconFile=@CMAKE_CURRENT_SOURCE_DIR@/res/barrier.ico
|
SetupIconFile=@CMAKE_CURRENT_SOURCE_DIR@/res/barrier.ico
|
||||||
|
VersionInfoProductTextVersion={#MyAppTextVersion}
|
||||||
|
VersionInfoProductVersion={#MyAppVersion}
|
||||||
|
VersionInfoTextVersion={#MyAppTextVersion}
|
||||||
|
VersionInfoVersion={#MyAppVersion}
|
||||||
|
VersionInfoCopyright={#MyAppCopyright}
|
||||||
|
|
||||||
Compression=lzma
|
Compression=lzma
|
||||||
SolidCompression=yes
|
SolidCompression=yes
|
||||||
ArchitecturesInstallIn64BitMode=x64 ia64
|
ArchitecturesInstallIn64BitMode=x64 ia64
|
||||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||||
|
|
||||||
#include "scripts\lang\english.iss"
|
#include "scripts\lang\english.iss"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue