diff options
author | Brad King <brad.king@kitware.com> | 2001-05-16 20:41:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-05-16 20:41:30 (GMT) |
commit | f08a1b88853fda7376808cb8ebbb63201dde10f6 (patch) | |
tree | e663e1e7f0064a70a027ac39695a73e56cb92b37 /Source/cmCommands.cxx | |
parent | 8011fe0fadb8a57e5086b97a0d3cd783207fae07 (diff) | |
download | CMake-f08a1b88853fda7376808cb8ebbb63201dde10f6.zip CMake-f08a1b88853fda7376808cb8ebbb63201dde10f6.tar.gz CMake-f08a1b88853fda7376808cb8ebbb63201dde10f6.tar.bz2 |
ENH: Adding CABLE_CLASS_SET and CABLE_WRAP_TCL commands. They cannot yet be used with the main branch of CABLE, though.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index ef1393e..91872fa 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -12,6 +12,7 @@ #include "cmBuildCommand.cxx" #include "cmBuildNameCommand.cxx" #include "cmBuildSharedLibrariesCommand.cxx" +#include "cmCableClassSetCommand.cxx" #include "cmCableCloseNamespaceCommand.cxx" #include "cmCableCommand.cxx" #include "cmCableData.cxx" @@ -22,6 +23,7 @@ #include "cmCablePackageCommand.cxx" #include "cmCablePackageEntryCommand.cxx" #include "cmCableSourceFilesCommand.cxx" +#include "cmCableWrapTclCommand.cxx" #include "cmCableWrapCommand.cxx" #include "cmConfigureFileCommand.cxx" #include "cmConfigureFileNoAutoconf.cxx" @@ -67,6 +69,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmBuildCommand); commands.push_back(new cmBuildNameCommand); commands.push_back(new cmBuildSharedLibrariesCommand); + commands.push_back(new cmCableClassSetCommand); commands.push_back(new cmCableCloseNamespaceCommand); commands.push_back(new cmCableDefineSetCommand); commands.push_back(new cmCableInstantiateCommand); @@ -74,6 +77,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmCableOpenNamespaceCommand); commands.push_back(new cmCablePackageCommand); commands.push_back(new cmCableSourceFilesCommand); + commands.push_back(new cmCableWrapTclCommand); commands.push_back(new cmCableWrapCommand); commands.push_back(new cmConfigureFileCommand); commands.push_back(new cmConfigureFileNoAutoconf); |