diff options
author | Brad King <brad.king@kitware.com> | 2001-07-23 15:07:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-07-23 15:07:38 (GMT) |
commit | dc87e1906d94594b1957c56e4785c184d1743e81 (patch) | |
tree | 0fe87768e38e4521e3d49f6e849b294bbb0a6d5d /Source/cmCommands.cxx | |
parent | ebe08134710bdf5814f59f17a2d9027397eb906b (diff) | |
download | CMake-dc87e1906d94594b1957c56e4785c184d1743e81.zip CMake-dc87e1906d94594b1957c56e4785c184d1743e81.tar.gz CMake-dc87e1906d94594b1957c56e4785c184d1743e81.tar.bz2 |
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.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 129d07c..d791395 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); |