summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorIan Scott <ian.m.scott@stud.man.ac.uk>2001-10-15 14:19:53 -0400
committerIan Scott <ian.m.scott@stud.man.ac.uk>2001-10-15 14:19:53 -0400
commit3a316a6e0a8611b1f5998b3a654eebf1dd1cb4e5 (patch)
treea704e9eb664dd40549d71103f399d1fc9ff76629 /Source/cmCommands.cxx
parentb6158ac39c69c634ec0987a6ee9f2adde5d47c93 (diff)
downloadcmake-3a316a6e0a8611b1f5998b3a654eebf1dd1cb4e5.tar.gz
added a QT_WRAP_CPP command
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 4c53dc4f2c..55d8da6c42 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -56,6 +56,7 @@
#include "cmVTKWrapJavaCommand.cxx"
#include "cmVTKWrapPythonCommand.cxx"
#include "cmVTKWrapTclCommand.cxx"
+#include "cmQTWrapCPPCommand.cxx"
#include "cmWrapExcludeFilesCommand.cxx"
void GetPredefinedCommands(std::list<cmCommand*>& commands)
@@ -113,6 +114,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmVTKWrapJavaCommand);
commands.push_back(new cmVTKWrapPythonCommand);
commands.push_back(new cmVTKWrapTclCommand);
+ commands.push_back(new cmQTWrapCPPCommand);
commands.push_back(new cmWrapExcludeFilesCommand);
}