Merge pull request #8235 from Icinga/bugfix/windows-version

Fix Windows .exe version v2.12.0 -> 2.12.0
This commit is contained in:
Noah Hilverling 2020-09-14 11:00:03 +02:00 committed by GitHub
commit 674bffb45b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -18,12 +18,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Icinga GmbH"
VALUE "FileDescription", "Icinga 2"
VALUE "FileVersion", VERSION
VALUE "FileVersion", ICINGA2_VERSION
VALUE "InternalName", "icinga2.exe"
VALUE "LegalCopyright", "© Icinga GmbH"
VALUE "OriginalFilename", "icinga2.exe"
VALUE "ProductName", "Icinga 2"
VALUE "ProductVersion", VERSION
VALUE "ProductVersion", ICINGA2_VERSION
END
END

View File

@ -1 +1,2 @@
#define VERSION "${GIT_VERSION}"
#define ICINGA2_VERSION "${ICINGA2_VERSION}"