Skip to content

Commit

Permalink
Add VC11 tinyxml libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlson2k committed Aug 21, 2012
1 parent f457d10 commit 8c4ed0f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions xbmc/utils/XBMCTinyXML.h
Expand Up @@ -24,12 +24,20 @@
#endif
#ifdef TARGET_WINDOWS
#define TIXML_USE_STL
#if _MSC_VER < 1600
#ifdef _DEBUG
#pragma comment(lib, "tinyxmlSTLd.lib")
#else
#pragma comment(lib, "tinyxmlSTL.lib")
#endif
#else
#ifdef _DEBUG
#pragma comment(lib, "tinyxmlSTL11d.lib")
#else
#pragma comment(lib, "tinyxmlSTL11.lib")
#endif
#endif
#else
//compile fix for TinyXml < 2.6.0
#define DOCUMENT TINYXML_DOCUMENT
#define ELEMENT TINYXML_ELEMENT
Expand Down

0 comments on commit 8c4ed0f

Please sign in to comment.