mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
Add TinyXML
This commit is contained in:
parent
23bd4d6ae3
commit
a5f509bea3
@ -824,21 +824,24 @@
|
||||
#defer HAVE_RAD_MSS $[libtest $[RAD_MSS_LPATH],$[RAD_MSS_LIBS]]
|
||||
|
||||
// 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_LPATH /usr/local/fmod/api/lib
|
||||
#define FMODEX_LIBS $[if $[libtest $[FMODEX_LPATH],fmodex64],fmodex64,fmodex]
|
||||
#defer HAVE_FMODEX $[libtest $[FMODEX_LPATH],$[FMODEX_LIBS]]
|
||||
|
||||
// Info for the Ageia PhysX SDK
|
||||
// note this may be overwritten in wintools Config.pp
|
||||
#define PHYSX_IPATH
|
||||
#define PHYSX_LPATH
|
||||
#define PHYSX_LIBS PhysXLoader.lib NxCharacter.lib NxCooking.lib NxExtensions.lib
|
||||
#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
|
||||
// note this may be overwritten in wintools Config.pp
|
||||
#define CHROMIUM_IPATH /usr/include/chromium/include
|
||||
#define CHROMIUM_LPATH /usr/lib/chromium/bin/WINT_NT
|
||||
#define CHROMIUM_LIBS spuload
|
||||
|
@ -96,6 +96,11 @@
|
||||
#else
|
||||
#print - Did not find Ageia PhysX
|
||||
#endif
|
||||
#if $[HAVE_TINYXML]
|
||||
#print + TinyXML
|
||||
#else
|
||||
#print - Did not find TinyXML
|
||||
#endif
|
||||
#if $[HAVE_GTK]
|
||||
#print + gtk+-2
|
||||
#else
|
||||
|
@ -262,6 +262,11 @@
|
||||
#set PHYSX_LIBS $[PHYSX_LIBS]
|
||||
#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_LPATH $[unixfilename $[CHROMIUM_LPATH]]
|
||||
#set CHROMIUM_LIBS $[CHROMIUM_LIBS]
|
||||
|
@ -372,6 +372,12 @@
|
||||
#define physx_libs $[PHYSX_LIBS]
|
||||
#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]
|
||||
#define chromium_ipath $[wildcard $[CHROMIUM_IPATH]]
|
||||
#define chromium_lpath $[wildcard $[CHROMIUM_LPATH]]
|
||||
|
Loading…
x
Reference in New Issue
Block a user