-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexeversion.rc
102 lines (98 loc) · 3.8 KB
/
exeversion.rc
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2023 Oliver Schneider (assarbad.net)
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
// [Boost Software License - Version 1.0 - August 17th, 2003]
//
// SPDX-License-Identifier: BSL-1.0
//
///////////////////////////////////////////////////////////////////////////////
#include <winnt.rh>
#include <winver.h>
#pragma code_page(65001)
#ifdef RC_INVOKED
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include "exeversion.h"
#ifdef DBG
#define ACTUAL_FILEFLAGS VS_FF_DEBUG
#else
#define ACTUAL_FILEFLAGS 0
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION CREATE_XVER(FILE_MAJVER, FILE_MINVER, FILE_PATCH, FILE_BUILD)
PRODUCTVERSION CREATE_XVER(PRD_MAJVER, PRD_MINVER, PRD_PATCH, PRD_BUILD)
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS ACTUAL_FILEFLAGS
FILEOS VOS_NT
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "000004b0"
BEGIN
#ifdef TEXT_AUTHOR
VALUE "Author", ANSISTRING(TEXT_AUTHOR)
#endif
#ifdef TEXT_COMMENTS
VALUE "Comments", ANSISTRING(TEXT_COMMENTS)
#endif
VALUE "CompanyName", ANSISTRING(TEXT_COMPANY)
VALUE "FileDescription", ANSISTRING(TEXT_FILEDESC)
VALUE "FileVersion", ANSISTRING(CREATE_FVER(FILE_MAJVER, FILE_MINVER, FILE_PATCH, FILE_BUILD))
VALUE "InternalName", ANSISTRING(TEXT_INTERNALNAME)
VALUE "LegalCopyright", ANSISTRING(TEXT_COPYRIGHT)
VALUE "OriginalFilename", ANSISTRING(TEXT_MODULE)
VALUE "ProductName", ANSISTRING(TEXT_PRODUCTNAME)
VALUE "ProductVersion", ANSISTRING(CREATE_PVER(PRD_MAJVER, PRD_MINVER, PRD_PATCH, PRD_BUILD))
#ifdef TEXT_PORTIONSCOPYRIGHT
VALUE "Portions Copyright", ANSISTRING(TEXT_PORTIONSCOPYRIGHT)
#endif
#ifdef TEXT_SPECIALBUILD
VALUE "SpecialBuild", ANSISTRING(TEXT_SPECIALBUILD)
#endif
#ifdef TEXT_WEBSITE
VALUE "Website", ANSISTRING(TEXT_WEBSITE)
#endif
#if defined(HG_REV_ID) && defined(HG_REV_NO)
VALUE "Mercurial revision", HG_REV_ID " (" ANSISTRING(HG_REV_NO) ")"
#endif
#if defined(GIT_COMMIT)
VALUE "Git revision", ANSISTRING(GIT_COMMIT)
#endif
#if defined(HG_FULLID) && defined(HG_REPOSITORY)
VALUE "Mercurial revision URL", HG_REPOSITORY "/src/" HG_FULLID
#endif
#ifdef HG_REPOSITORY
VALUE "Mercurial repository", HG_REPOSITORY
#endif
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0, 1200
END
END
#endif // RC_INVOKED