diff options
author | George Hazan <ghazan@miranda.im> | 2018-06-08 11:13:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-06-08 11:13:38 +0300 |
commit | e3a92da4b82e687e60478c09572197e1db13012f (patch) | |
tree | 0b2697530dca9ef147bee70a3ba61adf8fa2dc6c /src/mir_core/res/version.rc | |
parent | 0d84973579103633147b3dab3ec08ff4dd9ee98b (diff) |
fix for mir_app / mir_core version resources
Diffstat (limited to 'src/mir_core/res/version.rc')
-rw-r--r-- | src/mir_core/res/version.rc | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/mir_core/res/version.rc b/src/mir_core/res/version.rc new file mode 100644 index 0000000000..a7d8fde364 --- /dev/null +++ b/src/mir_core/res/version.rc @@ -0,0 +1,57 @@ +#ifdef APSTUDIO_INVOKED +#error this file is not editable by Microsoft Visual C++ +#endif //APSTUDIO_INVOKED + +#include <windows.h> +#include <winres.h> + +#include "../include/m_version.h" + +///////////////////////////////////////////////////////////////////////////// +// English (U.S.) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1250) +#endif //_WIN32 + +VS_VERSION_INFO VERSIONINFO + FILEVERSION MIRANDA_VERSION_FILEVERSION + PRODUCTVERSION MIRANDA_VERSION_FILEVERSION + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "000004b0" + BEGIN + VALUE "Comments", "Licensed under the terms of the GNU General Public License\0" + VALUE "CompanyName", "Miranda NG team\0" + VALUE "FileDescription", "Miranda NG\0" + VALUE "FileVersion", MIRANDA_VERSION_DISPLAY + VALUE "InternalName", "mir_core\0" + VALUE "LegalCopyright", "Copyright © 2000-11 Miranda IM, 2012-18 Miranda NG team. This software is released under the terms of the GNU General Public License.\0" + VALUE "LegalTrademarks", "\0" + VALUE "OriginalFilename", "mir_core.mir\0" + VALUE "PrivateBuild", "\0" + VALUE "ProductName", "Miranda NG\0" + VALUE "ProductVersion", MIRANDA_VERSION_DISPLAY + VALUE "SpecialBuild", "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0, 1200 + END +END + +#endif // English (U.S.) resources +///////////////////////////////////////////////////////////////////////////// |