|
| 1 | +// Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +// or more contributor license agreements. See the NOTICE file |
| 3 | +// distributed with this work for additional information |
| 4 | +// regarding copyright ownership. The ASF licenses this file |
| 5 | +// to you under the Apache License, Version 2.0 (the |
| 6 | +// "License"); you may not use this file except in compliance |
| 7 | +// with the License. You may obtain a copy of the License at |
| 8 | +// |
| 9 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +// |
| 11 | +// Unless required by applicable law or agreed to in writing, |
| 12 | +// software distributed under the License is distributed on an |
| 13 | +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +// KIND, either express or implied. See the License for the |
| 15 | +// specific language governing permissions and limitations |
| 16 | +// under the License. |
| 17 | + |
| 18 | +#define VER_FILEVERSION @VER_FILEVERSION@ |
| 19 | +#define VER_FILEVERSION_STR "@VER_FILEVERSION_STR@\0" |
| 20 | + |
| 21 | +#define VER_PRODUCTVERSION @VER_FILEVERSION@ |
| 22 | +#define VER_PRODUCTVERSION_STR "@VER_FILEVERSION_STR@\0" |
| 23 | + |
| 24 | +#define VER_COMPANYNAME_STR "@VER_COMPANYNAME_STR@\0" |
| 25 | +#define VER_PRODUCTNAME_STR "@VER_PRODUCTNAME_STR@\0" |
| 26 | + |
| 27 | +1 VERSIONINFO |
| 28 | +FILEVERSION VER_FILEVERSION |
| 29 | +PRODUCTVERSION VER_PRODUCTVERSION |
| 30 | +BEGIN |
| 31 | + BLOCK "StringFileInfo" |
| 32 | + BEGIN |
| 33 | + BLOCK "040904E4" |
| 34 | + BEGIN |
| 35 | + VALUE "CompanyName", VER_COMPANYNAME_STR |
| 36 | + VALUE "FileVersion", VER_FILEVERSION_STR |
| 37 | + VALUE "ProductName", VER_PRODUCTNAME_STR |
| 38 | + VALUE "ProductVersion", VER_PRODUCTVERSION_STR |
| 39 | + END |
| 40 | + END |
| 41 | + |
| 42 | + BLOCK "VarFileInfo" |
| 43 | + BEGIN |
| 44 | + /* The following line should only be modified for localized versions. */ |
| 45 | + /* It consists of any number of WORD,WORD pairs, with each pair */ |
| 46 | + /* describing a language,codepage combination supported by the file. */ |
| 47 | + /* */ |
| 48 | + /* For example, a file might have values "0x409,1252" indicating that it */ |
| 49 | + /* supports English language (0x409) in the Windows ANSI codepage (1252). */ |
| 50 | + |
| 51 | + VALUE "Translation", 0x409, 1252 |
| 52 | + |
| 53 | + END |
| 54 | +END |
0 commit comments