summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-12-17 21:20:33 (GMT)
committerBrad King <brad.king@kitware.com>2001-12-17 21:20:33 (GMT)
commitfa53ab0807c7a6ad685157879ab2419c08f6dab3 (patch)
tree5ad0f0cd505d8c4986b08c22d6db8fe51949dc45 /Source/cmCommands.cxx
parent1b6ca3eba06ce8eb525370ec2413facd0143d706 (diff)
downloadCMake-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.cxx4
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);
}
-
-