1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-23 08:38:49 -05:00

Make some strings different in resource file for debug or release builds

This commit is contained in:
Yang Tse 2009-11-10 20:20:13 +00:00
parent 16a1e251cd
commit 2287e7ba8b

View File

@ -41,13 +41,20 @@ BEGIN
BLOCK "040904b0" BLOCK "040904b0"
BEGIN BEGIN
VALUE "CompanyName", "The c-ares library, http://c-ares.haxx.se/\0" VALUE "CompanyName", "The c-ares library, http://c-ares.haxx.se/\0"
#if defined(DEBUGBUILD) || defined(_DEBUG)
VALUE "FileDescription", "c-ares Debug Shared Library\0"
VALUE "FileVersion", ARES_VERSION_STR "\0"
VALUE "InternalName", "c-ares\0"
VALUE "OriginalFilename", "caresd.dll\0"
#else
VALUE "FileDescription", "c-ares Shared Library\0" VALUE "FileDescription", "c-ares Shared Library\0"
VALUE "FileVersion", ARES_VERSION_STR "\0" VALUE "FileVersion", ARES_VERSION_STR "\0"
VALUE "InternalName", "c-ares\0" VALUE "InternalName", "c-ares\0"
VALUE "OriginalFilename", "cares.dll\0" VALUE "OriginalFilename", "cares.dll\0"
#endif
VALUE "ProductName", "The c-ares library\0" VALUE "ProductName", "The c-ares library\0"
VALUE "ProductVersion", ARES_VERSION_STR "\0" VALUE "ProductVersion", ARES_VERSION_STR "\0"
VALUE "LegalCopyright", "© 2004 - 2009 Daniel Stenberg, <daniel@haxx.se>.\0" VALUE "LegalCopyright", " 2004 - 2009 Daniel Stenberg, <daniel@haxx.se>.\0"
VALUE "License", "http://c-ares.haxx.se/license.html\0" VALUE "License", "http://c-ares.haxx.se/license.html\0"
END END
END END