diff options
author | Brad King <brad.king@kitware.com> | 2001-12-17 21:20:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-12-17 21:20:33 (GMT) |
commit | fa53ab0807c7a6ad685157879ab2419c08f6dab3 (patch) | |
tree | 5ad0f0cd505d8c4986b08c22d6db8fe51949dc45 /Source/cmCommands.cxx | |
parent | 1b6ca3eba06ce8eb525370ec2413facd0143d706 (diff) | |
download | CMake-fa53ab0807c7a6ad685157879ab2419c08f6dab3.zip CMake-fa53ab0807c7a6ad685157879ab2419c08f6dab3.tar.gz CMake-fa53ab0807c7a6ad685157879ab2419c08f6dab3.tar.bz2 |
ENH: Adding VTK_MAKE_INSTANTIATOR command. This command will be used by VTK kits to register their classes with vtkInstantiator.
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 8752159..0556326 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -64,6 +64,7 @@ #include "cmQTWrapUICommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" #include "cmAddCustomCommandCommand.cxx" +#include "cmVTKMakeInstantiatorCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -128,6 +129,5 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmQTWrapUICommand); commands.push_back(new cmWrapExcludeFilesCommand); commands.push_back(new cmAddCustomCommandCommand); + commands.push_back(new cmVTKMakeInstantiatorCommand); } - - |