Add TinyXML

This commit is contained in:
David Rose 2009-06-09 20:31:31 +00:00
parent 23bd4d6ae3
commit a5f509bea3
4 changed files with 22 additions and 3 deletions

View File

@ -824,21 +824,24 @@
#defer HAVE_RAD_MSS $[libtest $[RAD_MSS_LPATH],$[RAD_MSS_LIBS]] #defer HAVE_RAD_MSS $[libtest $[RAD_MSS_LPATH],$[RAD_MSS_LIBS]]
// Info for the Fmod audio engine // Info for the Fmod audio engine
// note this may be overwritten in wintools Config.pp
#define FMODEX_IPATH /usr/local/fmod/api/inc #define FMODEX_IPATH /usr/local/fmod/api/inc
#define FMODEX_LPATH /usr/local/fmod/api/lib #define FMODEX_LPATH /usr/local/fmod/api/lib
#define FMODEX_LIBS $[if $[libtest $[FMODEX_LPATH],fmodex64],fmodex64,fmodex] #define FMODEX_LIBS $[if $[libtest $[FMODEX_LPATH],fmodex64],fmodex64,fmodex]
#defer HAVE_FMODEX $[libtest $[FMODEX_LPATH],$[FMODEX_LIBS]] #defer HAVE_FMODEX $[libtest $[FMODEX_LPATH],$[FMODEX_LIBS]]
// Info for the Ageia PhysX SDK // Info for the Ageia PhysX SDK
// note this may be overwritten in wintools Config.pp
#define PHYSX_IPATH #define PHYSX_IPATH
#define PHYSX_LPATH #define PHYSX_LPATH
#define PHYSX_LIBS PhysXLoader.lib NxCharacter.lib NxCooking.lib NxExtensions.lib #define PHYSX_LIBS PhysXLoader.lib NxCharacter.lib NxCooking.lib NxExtensions.lib
#defer HAVE_PHYSX $[libtest $[PHYSX_LPATH],$[PHYSX_LIBS]] #defer HAVE_PHYSX $[libtest $[PHYSX_LPATH],$[PHYSX_LIBS]]
// Info for TinyXML library
#define TINYXML_IPATH
#define TINYXML_LPATH
#define TINYXML_LIBS $[if $[WINDOWS_PLATFORM],tinyxml.lib,tinyxml]
#defer HAVE_TINYXML $[libtest $[TINYXML_LPATH],$[TINYXML_LIBS]]
// Info for http://www.sourceforge.net/projects/chromium // Info for http://www.sourceforge.net/projects/chromium
// note this may be overwritten in wintools Config.pp
#define CHROMIUM_IPATH /usr/include/chromium/include #define CHROMIUM_IPATH /usr/include/chromium/include
#define CHROMIUM_LPATH /usr/lib/chromium/bin/WINT_NT #define CHROMIUM_LPATH /usr/lib/chromium/bin/WINT_NT
#define CHROMIUM_LIBS spuload #define CHROMIUM_LIBS spuload

View File

@ -96,6 +96,11 @@
#else #else
#print - Did not find Ageia PhysX #print - Did not find Ageia PhysX
#endif #endif
#if $[HAVE_TINYXML]
#print + TinyXML
#else
#print - Did not find TinyXML
#endif
#if $[HAVE_GTK] #if $[HAVE_GTK]
#print + gtk+-2 #print + gtk+-2
#else #else

View File

@ -262,6 +262,11 @@
#set PHYSX_LIBS $[PHYSX_LIBS] #set PHYSX_LIBS $[PHYSX_LIBS]
#set HAVE_PHYSX $[HAVE_PHYSX] #set HAVE_PHYSX $[HAVE_PHYSX]
#set TINYXML_IPATH $[unixfilename $[TINYXML_IPATH]]
#set TINYXML_LPATH $[unixfilename $[TINYXML_LPATH]]
#set TINYXML_LIBS $[TINYXML_LIBS]
#set HAVE_TINYXML $[HAVE_TINYXML]
#set CHROMIUM_IPATH $[unixfilename $[CHROMIUM_IPATH]] #set CHROMIUM_IPATH $[unixfilename $[CHROMIUM_IPATH]]
#set CHROMIUM_LPATH $[unixfilename $[CHROMIUM_LPATH]] #set CHROMIUM_LPATH $[unixfilename $[CHROMIUM_LPATH]]
#set CHROMIUM_LIBS $[CHROMIUM_LIBS] #set CHROMIUM_LIBS $[CHROMIUM_LIBS]

View File

@ -372,6 +372,12 @@
#define physx_libs $[PHYSX_LIBS] #define physx_libs $[PHYSX_LIBS]
#endif #endif
#if $[HAVE_TINYXML]
#define tinyxml_ipath $[wildcard $[TINYXML_IPATH]]
#define tinyxml_lpath $[wildcard $[TINYXML_LPATH]]
#define tinyxml_libs $[TINYXML_LIBS]
#endif
#if $[HAVE_CHROMIUM] #if $[HAVE_CHROMIUM]
#define chromium_ipath $[wildcard $[CHROMIUM_IPATH]] #define chromium_ipath $[wildcard $[CHROMIUM_IPATH]]
#define chromium_lpath $[wildcard $[CHROMIUM_LPATH]] #define chromium_lpath $[wildcard $[CHROMIUM_LPATH]]