-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.rc.in
44 lines (39 loc) · 1.46 KB
/
version.rc.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <windows.h>
#ifdef _DEBUG
#define VER_DEBUG VS_FF_DEBUG
#else
#define VER_DEBUG 0
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION @fileversion@,0
PRODUCTVERSION @fileversion@,0
FILEFLAGS VER_DEBUG
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "na-trium-144@users.noreply.github.com\0"
VALUE "FileDescription", "Friendly C++ STL wrapper with automatic stacktrace\0"
VALUE "FileVersion", "@strversion@\0"
VALUE "InternalName", "y3c\0"
// VALUE "OriginalFilename", "\0"
VALUE "ProductName", "y3c-stl\0"
VALUE "ProductVersion", "@strversion@\0"
VALUE "LegalCopyright", "Copyright (c) na-trium-144\0"
END
END
BLOCK "VarFileInfo"
BEGIN
/* The following line should only be modified for localized versions. */
/* It consists of any number of WORD,WORD pairs, with each pair */
/* describing a language,codepage combination supported by the file. */
/* */
/* For example, a file might have values "0x409,1252" indicating that it */
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
VALUE "Translation", 0x409, 1252
END
END