Jozef Izso | 3415201 | 2018-04-27 23:44:38 +0200 | [diff] [blame] | 1 | #define VS_FF_DEBUG 0x1L |
| 2 | #define VS_VERSION_INFO 0x1L |
| 3 | #define VS_FFI_FILEFLAGSMASK 0x17L |
| 4 | #define VER_PRIVATEBUILD 0x0L |
| 5 | #define VER_PRERELEASE 0x0L |
| 6 | #define VOS__WINDOWS32 0x4L |
| 7 | #define VFT_DLL 0x2L |
| 8 | #define VFT2_UNKNOWN 0x0L |
| 9 | |
| 10 | #ifndef DEBUG |
| 11 | #define VER_DEBUG 0 |
| 12 | #else |
| 13 | #define VER_DEBUG VS_FF_DEBUG |
| 14 | #endif |
| 15 | |
| 16 | |
| 17 | VS_VERSION_INFO VERSIONINFO |
Paul Yang | 5b4ac53 | 2019-02-01 18:43:55 -0800 | [diff] [blame] | 18 | FILEVERSION @protobuf_RC_FILEVERSION@ |
| 19 | PRODUCTVERSION @protobuf_RC_FILEVERSION@ |
Jozef Izso | 3415201 | 2018-04-27 23:44:38 +0200 | [diff] [blame] | 20 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
| 21 | FILEFLAGS VER_DEBUG |
| 22 | FILEOS VOS__WINDOWS32 |
| 23 | FILETYPE VFT_DLL |
| 24 | BEGIN |
| 25 | BLOCK "VarFileInfo" |
Xiang Dai | e479410 | 2019-02-21 11:28:50 +0800 | [diff] [blame] | 26 | BEGIN |
Jozef Izso | 3415201 | 2018-04-27 23:44:38 +0200 | [diff] [blame] | 27 | // English language (0x409) and the Windows Unicode codepage (1200) |
| 28 | VALUE "Translation", 0x409, 1200 |
| 29 | END |
| 30 | BLOCK "StringFileInfo" |
| 31 | BEGIN |
| 32 | BLOCK "040904b0" |
| 33 | BEGIN |
| 34 | VALUE "FileDescription", "Compiled with @CMAKE_CXX_COMPILER_ID@ @CMAKE_CXX_COMPILER_VERSION@\0" |
| 35 | VALUE "ProductVersion", "@protobuf_VERSION@\0" |
| 36 | VALUE "FileVersion", "@protobuf_VERSION@\0" |
| 37 | VALUE "InternalName", "protobuf\0" |
| 38 | VALUE "ProductName", "Protocol Buffers - Google's Data Interchange Format\0" |
| 39 | VALUE "CompanyName", "Google Inc.\0" |
| 40 | VALUE "LegalCopyright", "Copyright 2008 Google Inc. All rights reserved.\0" |
| 41 | VALUE "Licence", "BSD\0" |
| 42 | VALUE "Info", "https://developers.google.com/protocol-buffers/\0" |
| 43 | END |
| 44 | END |
| 45 | END |