diff options
author | Jose <jose@zeroc.com> | 2016-02-26 20:46:27 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-02-26 20:46:27 +0100 |
commit | 62cba8cd46a535585a4422daab489f114feab6f3 (patch) | |
tree | c77e9cec24a570b06024a3c6a1552b8e6eb20ec6 /cpp/include/IceXML/Parser.h | |
parent | updating changelog for ICE-6844 (diff) | |
download | ice-62cba8cd46a535585a4422daab489f114feab6f3.tar.bz2 ice-62cba8cd46a535585a4422daab489f114feab6f3.tar.xz ice-62cba8cd46a535585a4422daab489f114feab6f3.zip |
Windows msbuild build updates
Diffstat (limited to 'cpp/include/IceXML/Parser.h')
-rw-r--r-- | cpp/include/IceXML/Parser.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/cpp/include/IceXML/Parser.h b/cpp/include/IceXML/Parser.h index 0be03456614..f0c8e7c43b7 100644 --- a/cpp/include/IceXML/Parser.h +++ b/cpp/include/IceXML/Parser.h @@ -28,21 +28,15 @@ #endif // -// Automatically link IceXML[D].lib with Visual C++ +// Automatically link IceXML[D|++11|++11D].lib with Visual C++ // #if !defined(ICE_BUILDING_ICE_XML) && defined(ICE_XML_API_EXPORTS) # define ICE_BUILDING_ICE_XML #endif -#ifdef _MSC_VER -# if !defined(ICE_BUILDING_ICE_XML) -# if defined(_DEBUG) && !defined(ICE_OS_WINRT) -# pragma comment(lib, "IceXMLD.lib") -# else -# pragma comment(lib, "IceXML.lib") -# endif -# endif +#if defined(_MSC_VER) && !defined(ICE_BUILDING_ICE_XML) +# pragma comment(lib, ICE_LIBNAME("IceXML")) #endif namespace IceXML |