summaryrefslogtreecommitdiff
path: root/cares.rc
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-10-29 17:52:56 +0000
committerYang Tse <yangsita@gmail.com>2009-10-29 17:52:56 +0000
commit991dd45884e3e6e0caf71e415f74399def017db3 (patch)
treeb67bcf60d2e75a1bb1cf74f467ee8e7a7132c4b9 /cares.rc
parentdf2dc91fd4af74a11cb6697aa83e32517a92afce (diff)
downloadc-ares-991dd45884e3e6e0caf71e415f74399def017db3.tar.gz
c-ares-991dd45884e3e6e0caf71e415f74399def017db3.tar.bz2
c-ares-991dd45884e3e6e0caf71e415f74399def017db3.zip
Updated MSVC 6.0 workspace and project files that allows building
dynamic and static c-ares libraries in debug and release flavours. Additionally each of the three sample programs is built against each of the four possible c-ares libraries, generating all this a total number of 12 executables and 4 libraries.
Diffstat (limited to 'cares.rc')
-rw-r--r--cares.rc59
1 files changed, 59 insertions, 0 deletions
diff --git a/cares.rc b/cares.rc
new file mode 100644
index 0000000..cbd6b97
--- /dev/null
+++ b/cares.rc
@@ -0,0 +1,59 @@
+/* $Id$ */
+
+/* Copyright (C) 2009 by Daniel Stenberg
+ *
+ * Permission to use, copy, modify, and distribute this
+ * software and its documentation for any purpose and without
+ * fee is hereby granted, provided that the above copyright
+ * notice appear in all copies and that both that copyright
+ * notice and this permission notice appear in supporting
+ * documentation, and that the name of M.I.T. not be used in
+ * advertising or publicity pertaining to distribution of the
+ * software without specific, written prior permission.
+ * M.I.T. makes no representations about the suitability of
+ * this software for any purpose. It is provided "as is"
+ * without express or implied warranty.
+ */
+
+#include <winver.h>
+#include "ares_version.h"
+
+LANGUAGE 0x09,0x01
+
+#define RC_VERSION ARES_VERSION_MAJOR, ARES_VERSION_MINOR, ARES_VERSION_PATCH, 0
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION RC_VERSION
+ PRODUCTVERSION RC_VERSION
+ FILEFLAGSMASK 0x3fL
+#if defined(DEBUGBUILD) || defined(_DEBUG)
+ FILEFLAGS 1
+#else
+ FILEFLAGS 0
+#endif
+ FILEOS VOS__WINDOWS32
+ FILETYPE VFT_DLL
+ FILESUBTYPE 0x0L
+
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904b0"
+ BEGIN
+ VALUE "CompanyName", "The c-ares library, http://c-ares.haxx.se/\0"
+ VALUE "FileDescription", "c-ares Shared Library\0"
+ VALUE "FileVersion", ARES_VERSION_STR "\0"
+ VALUE "InternalName", "c-ares\0"
+ VALUE "OriginalFilename", "cares.dll\0"
+ VALUE "ProductName", "The c-ares library\0"
+ VALUE "ProductVersion", ARES_VERSION_STR "\0"
+ VALUE "LegalCopyright", "© 2004 - 2009 Daniel Stenberg, <daniel@haxx.se>.\0"
+ VALUE "License", "http://c-ares.haxx.se/license.html\0"
+ END
+ END
+
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1200
+ END
+END