summaryrefslogtreecommitdiff
path: root/plugins/SRMM
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-03 20:31:32 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-03 20:31:32 +0000
commitd08dc5de734505b7016a517e27f7ab6eef06e271 (patch)
treee3d26477ac9a89ba20d0b96477c21f6c50ad5ac5 /plugins/SRMM
parente1f1f61d141247b2f379d458298829327dda191b (diff)
version info fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@289 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SRMM')
-rw-r--r--plugins/SRMM/srmm_10.vcxproj1
-rw-r--r--plugins/SRMM/srmm_10.vcxproj.filters3
-rw-r--r--plugins/SRMM/version.rc54
3 files changed, 58 insertions, 0 deletions
diff --git a/plugins/SRMM/srmm_10.vcxproj b/plugins/SRMM/srmm_10.vcxproj
index aa9f3cd6f1..e606ac061f 100644
--- a/plugins/SRMM/srmm_10.vcxproj
+++ b/plugins/SRMM/srmm_10.vcxproj
@@ -251,6 +251,7 @@
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="resource.rc" />
+ <ResourceCompile Include="version.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
diff --git a/plugins/SRMM/srmm_10.vcxproj.filters b/plugins/SRMM/srmm_10.vcxproj.filters
index b84a46c26b..4be72d8c8d 100644
--- a/plugins/SRMM/srmm_10.vcxproj.filters
+++ b/plugins/SRMM/srmm_10.vcxproj.filters
@@ -129,5 +129,8 @@
<ResourceCompile Include="resource.rc">
<Filter>Resource Files</Filter>
</ResourceCompile>
+ <ResourceCompile Include="version.rc">
+ <Filter>Resource Files</Filter>
+ </ResourceCompile>
</ItemGroup>
</Project> \ No newline at end of file
diff --git a/plugins/SRMM/version.rc b/plugins/SRMM/version.rc
new file mode 100644
index 0000000000..4b72425296
--- /dev/null
+++ b/plugins/SRMM/version.rc
@@ -0,0 +1,54 @@
+#include "version.h"
+#include "resource.h"
+#include "winres.h"
+#include "richedit.h"
+
+#ifdef _WIN32
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+#pragma code_page( 1252)
+#endif //_WIN32
+
+#ifndef _MAC
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION __FILEVERSION_STRING
+ PRODUCTVERSION __FILEVERSION_STRING
+ FILEFLAGSMASK 0x3fL
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x40004L
+ FILETYPE 0x2L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "Comments", "\0"
+ VALUE "CompanyName", "Miranda\0"
+ VALUE "FileDescription", "Send and receive instant messages\0"
+ VALUE "FileVersion", __VERSION_STRING "\0"
+ VALUE "InternalName", "jabber\0"
+ VALUE "LegalCopyright", "Copyright ( c) 2002-12 Miranda team\0"
+ VALUE "LegalTrademarks", "\0"
+ VALUE "OriginalFilename", "srmm.dll\0"
+ VALUE "PrivateBuild", "\0"
+ VALUE "ProductName", "SRMM plugin\0"
+ VALUE "ProductVersion", __VERSION_STRING "\0"
+ VALUE "SpecialBuild", "\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END
+
+#endif // !_MAC