mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 06:02:23 +02:00
22 lines
854 B
Text
22 lines
854 B
Text
// Language and character set information as described at
|
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa381049(v=vs.85).aspx
|
|
#define US_ENGLISH_UNICODE "040904B0"
|
|
|
|
// More information about the format of this file can be found at
|
|
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa381058(v=vs.85).aspx
|
|
1 VERSIONINFO
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK US_ENGLISH_UNICODE
|
|
BEGIN
|
|
VALUE "CompanyName", "@BUILD_ORGANIZATION@"
|
|
VALUE "FileDescription", "@APP_FULL_NAME@"
|
|
VALUE "FileVersion", "@BUILD_VERSION@"
|
|
VALUE "InternalName", "@TARGET_NAME@"
|
|
VALUE "OriginalFilename", "@TARGET_NAME@.exe"
|
|
VALUE "ProductName", "@APP_FULL_NAME@"
|
|
VALUE "ProductVersion", "@BUILD_VERSION@"
|
|
END
|
|
END
|
|
END
|