|
From: <cn...@us...> - 2009-05-12 05:02:31
|
Revision: 233
http://hgengine.svn.sourceforge.net/hgengine/?rev=233&view=rev
Author: cnlohr
Date: 2009-05-12 05:02:30 +0000 (Tue, 12 May 2009)
Log Message:
-----------
Let the compiler decide to tell the linker to link the .lib so we are not dependent on the project's intelligence.
Modified Paths:
--------------
Mercury2/src/XMLParser.cpp
Modified: Mercury2/src/XMLParser.cpp
===================================================================
--- Mercury2/src/XMLParser.cpp 2009-05-12 05:01:58 UTC (rev 232)
+++ Mercury2/src/XMLParser.cpp 2009-05-12 05:02:30 UTC (rev 233)
@@ -4,7 +4,11 @@
#include <libxml/parser.h>
#include <libxml/tree.h>
-//#include <SMOException.h>
+#if defined(WIN32)
+# if defined(_MSC_VER)
+# pragma comment(lib, "libxml2.lib")
+# endif
+#endif
XMLNode::XMLNode(xmlNode* node, xmlDoc* doc)
:m_node(node), m_doc(doc)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|