more setup0.h wxUSE_XRC fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29311 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-09-24 08:31:04 +00:00
parent f33cb209bf
commit 9581c3c6dc
3 changed files with 39 additions and 6 deletions

View File

@@ -428,13 +428,24 @@
// wxSound class // wxSound class
#define wxUSE_SOUND 1 #define wxUSE_SOUND 1
// Use wxWidget's XRC XML-based resource system. Recommended.
//
// Default is 1
//
// Recommended setting: 1 (requires XRC)
#define wxUSE_XRC 1
// XML parsing classes. Note that their API will change in the future, so // XML parsing classes. Note that their API will change in the future, so
// using wxXmlDocument and wxXmlNode in your app is not recommended. // using wxXmlDocument and wxXmlNode in your app is not recommended.
// //
// Default is 1 // Default is 1
// //
// Recommended setting: 1 (needed by XRC) // Recommended setting: 1 (required by XRC)
#define wxUSE_XML 1 #if wxUSE_XRC
# define wxUSE_XML 1
#else
# define wxUSE_XML 0
#endif
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Individual GUI controls // Individual GUI controls

View File

@@ -447,13 +447,24 @@
// wxSound class // wxSound class
#define wxUSE_SOUND 1 #define wxUSE_SOUND 1
// Use wxWidget's XRC XML-based resource system. Recommended.
//
// Default is 1
//
// Recommended setting: 1 (requires XRC)
#define wxUSE_XRC 1
// XML parsing classes. Note that their API will change in the future, so // XML parsing classes. Note that their API will change in the future, so
// using wxXmlDocument and wxXmlNode in your app is not recommended. // using wxXmlDocument and wxXmlNode in your app is not recommended.
// //
// Default is 1 // Default is 1
// //
// Recommended setting: 1 (needed by XRC) // Recommended setting: 1 (required by XRC)
#define wxUSE_XML 1 #if wxUSE_XRC
# define wxUSE_XML 1
#else
# define wxUSE_XML 0
#endif
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Individual GUI controls // Individual GUI controls

View File

@@ -484,13 +484,24 @@
// wxSound class // wxSound class
#define wxUSE_SOUND 1 #define wxUSE_SOUND 1
// Use wxWidget's XRC XML-based resource system. Recommended.
//
// Default is 1
//
// Recommended setting: 1 (requires XRC)
#define wxUSE_XRC 1
// XML parsing classes. Note that their API will change in the future, so // XML parsing classes. Note that their API will change in the future, so
// using wxXmlDocument and wxXmlNode in your app is not recommended. // using wxXmlDocument and wxXmlNode in your app is not recommended.
// //
// Default is 1 // Default is 1
// //
// Recommended setting: 1 (needed by XRC) // Recommended setting: 1 (required by XRC)
#define wxUSE_XML 1 #if wxUSE_XRC
# define wxUSE_XML 1
#else
# define wxUSE_XML 0
#endif
// Set to 1 to compile MS Windows XP theme engine support // Set to 1 to compile MS Windows XP theme engine support
#define wxUSE_UXTHEME 0 #define wxUSE_UXTHEME 0