diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2001-11-07 21:47:38 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2001-11-07 21:47:38 (GMT) |
commit | 39766efaaaf7ce30f6bc2d7f1f98252eab5294b3 (patch) | |
tree | 3675d80fd5965c93397b0ad78d3c2d7bfd7833cf /Source/cmCommands.cxx | |
parent | 853fe7ee590d094807fb713201e9aa807b745999 (diff) | |
download | CMake-39766efaaaf7ce30f6bc2d7f1f98252eab5294b3.zip CMake-39766efaaaf7ce30f6bc2d7f1f98252eab5294b3.tar.gz CMake-39766efaaaf7ce30f6bc2d7f1f98252eab5294b3.tar.bz2 |
Added accessor for add custom 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 550f580..c4a6fad 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -59,6 +59,7 @@ #include "cmVTKWrapTclCommand.cxx" #include "cmQTWrapCPPCommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" +#include "cmAddCustomCommandCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -118,6 +119,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmVTKWrapTclCommand); commands.push_back(new cmQTWrapCPPCommand); commands.push_back(new cmWrapExcludeFilesCommand); + commands.push_back(new cmAddCustomCommandCommand); } |