-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_version.rc
More file actions
51 lines (44 loc) · 968 Bytes
/
_version.rc
File metadata and controls
51 lines (44 loc) · 968 Bytes
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
45
46
47
48
49
50
51
#include <verrsrc.h>
#include <_version.h>
#include <appinfo.h>
// in the unlikely case that APP_PRODUCT and APP_OWNER are not
// defined given them sensible values
#ifndef APP_PRODUCT
#define APP_PRODUCT APP_NAME
#endif
#ifndef APP_OWNER
#define APP_OWNER "Mark Ogden"
#endif
VS_VERSION_INFO VERSIONINFO
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#endif
FILEOS 0x40004L
FILETYPE 0x1L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904b0"
BEGIN
#ifdef APP_DESCRIPTION
VALUE "FileDescription", APP_DESCRIPTION
#endif
VALUE "LegalCopyright",
"(C) " APP_OWNER
#ifdef APP_MODS
" <" APP_MODS ">"
#endif
#ifdef GIT_VERSION
VALUE "ProductVersion", GIT_VERSION
#endif
VALUE "OriginalFilename", APP_NAME ".exe"
VALUE "ProductName", APP_PRODUCT
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x809, 1200
END
END