summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-07-23 11:07:38 -0400
committerBrad King <brad.king@kitware.com>2001-07-23 11:07:38 -0400
commitdc87e1906d94594b1957c56e4785c184d1743e81 (patch)
tree0fe87768e38e4521e3d49f6e849b294bbb0a6d5d /Source/cmCommands.cxx
parentebe08134710bdf5814f59f17a2d9027397eb906b (diff)
downloadcmake-dc87e1906d94594b1957c56e4785c184d1743e81.tar.gz
ENH: Added CONFIGURE_GCCXML command to do hard work of configuring GCCXML's flags for the current compiler. Currently only implemented correctly for Visual C++ in Windows.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 129d07c889..d791395e10 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -16,6 +16,7 @@
#include "cmCableClassSetCommand.cxx"
#include "cmCableWrapTclCommand.cxx"
#include "cmConfigureFileCommand.cxx"
+#include "cmConfigureGccXmlCommand.cxx"
#include "cmElseCommand.cxx"
#include "cmEnableTestingCommand.cxx"
#include "cmEndIfCommand.cxx"
@@ -67,6 +68,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmCableClassSetCommand);
commands.push_back(new cmCableWrapTclCommand);
commands.push_back(new cmConfigureFileCommand);
+ commands.push_back(new cmConfigureGccXmlCommand);
commands.push_back(new cmElseCommand);
commands.push_back(new cmEnableTestingCommand);
commands.push_back(new cmEndIfCommand);