diff options
author | Brad King <brad.king@kitware.com> | 2002-09-10 13:50:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-09-10 13:50:39 (GMT) |
commit | 722f923a9e9391dc385c303039c97520688883f5 (patch) | |
tree | 2371d35d2b9342e15b7f305fe154792e870fdfb7 /Source/cmCommands.cxx | |
parent | 43d055eb7a1e24e863d598a234758c33745835db (diff) | |
download | CMake-722f923a9e9391dc385c303039c97520688883f5.zip CMake-722f923a9e9391dc385c303039c97520688883f5.tar.gz CMake-722f923a9e9391dc385c303039c97520688883f5.tar.bz2 |
BUG: Missing AC_SUBST commands added.
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 7517bf0..b2cc50c 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -80,6 +80,7 @@ #include "cmUseMangledMesaCommand.cxx" #include "cmUtilitySourceCommand.cxx" #include "cmVariableRequiresCommand.cxx" +#include "cmVTKCableWrapTclCommand.cxx" #include "cmVTKMakeInstantiatorCommand.cxx" #include "cmVTKWrapJavaCommand.cxx" #include "cmVTKWrapPythonCommand.cxx" @@ -162,6 +163,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmVariableRequiresCommand); + commands.push_back(new cmVTKCableWrapTclCommand); commands.push_back(new cmVTKMakeInstantiatorCommand); commands.push_back(new cmVTKWrapJavaCommand); commands.push_back(new cmVTKWrapPythonCommand); |