Simplify the version information resource definition a little.

Put the correct data into FileVersion and InternalName fields and remove
LegalTrademarks, PrivateBuild and SpecialBuild completely as they are optional
and shouldn't be present if the corresponding flags are not set, see
http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058(v=vs.85).aspx

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74122 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-06-08 02:23:52 +00:00
parent c315aa3db6
commit 13dec1dbeb

View File

@@ -53,15 +53,12 @@ BEGIN
VALUE "Comments", "wxWidgets cross-platform GUI framework\0"
VALUE "CompanyName", "wxWidgets development team\0"
VALUE "FileDescription", "wxWidgets for MSW\0"
VALUE "FileVersion", "wxWidgets Library " wxVERSION_NUM_DOT_STRING "\0"
VALUE "InternalName", "wxMSW\0"
VALUE "FileVersion", wxVERSION_NUM_DOT_STRING "\0"
VALUE "InternalName", wxSTRINGIZE(WXDLLNAME) "\0"
VALUE "LegalCopyright", "Copyright <20> 1993-2013 wxWidgets development team\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", wxSTRINGIZE(WXDLLNAME) ".dll\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "wxWidgets\0"
VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0"
VALUE "SpecialBuild", "\0"
END
END
BLOCK "VarFileInfo"