diff options
author | Franck Bettinger <bettingf@cs.man.ac.uk> | 2001-11-09 17:03:41 (GMT) |
---|---|---|
committer | Franck Bettinger <bettingf@cs.man.ac.uk> | 2001-11-09 17:03:41 (GMT) |
commit | becce939a2ca00ee15b7beb722dea311efdd2573 (patch) | |
tree | de6c8034996f4b2553baec6416dc53c12af80011 /Source/cmCommands.cxx | |
parent | 61a66c2645cc540cdce801f24567df7a922e24d5 (diff) | |
download | CMake-becce939a2ca00ee15b7beb722dea311efdd2573.zip CMake-becce939a2ca00ee15b7beb722dea311efdd2573.tar.gz CMake-becce939a2ca00ee15b7beb722dea311efdd2573.tar.bz2 |
support for compilation of .ui files into .h and .cxx files
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 c4a6fad..9f9f64e 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -58,6 +58,7 @@ #include "cmVTKWrapPythonCommand.cxx" #include "cmVTKWrapTclCommand.cxx" #include "cmQTWrapCPPCommand.cxx" +#include "cmQTWrapUICommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" #include "cmAddCustomCommandCommand.cxx" @@ -118,6 +119,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmVTKWrapPythonCommand); commands.push_back(new cmVTKWrapTclCommand); commands.push_back(new cmQTWrapCPPCommand); + commands.push_back(new cmQTWrapUICommand); commands.push_back(new cmWrapExcludeFilesCommand); commands.push_back(new cmAddCustomCommandCommand); } |