diff options
author | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2001-10-15 18:19:53 (GMT) |
---|---|---|
committer | Ian Scott <ian.m.scott@stud.man.ac.uk> | 2001-10-15 18:19:53 (GMT) |
commit | 3a316a6e0a8611b1f5998b3a654eebf1dd1cb4e5 (patch) | |
tree | a704e9eb664dd40549d71103f399d1fc9ff76629 /Source/cmCommands.cxx | |
parent | b6158ac39c69c634ec0987a6ee9f2adde5d47c93 (diff) | |
download | CMake-3a316a6e0a8611b1f5998b3a654eebf1dd1cb4e5.zip CMake-3a316a6e0a8611b1f5998b3a654eebf1dd1cb4e5.tar.gz CMake-3a316a6e0a8611b1f5998b3a654eebf1dd1cb4e5.tar.bz2 |
added a QT_WRAP_CPP command
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 4c53dc4..55d8da6 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); } |