summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-02-03 21:51:46 (GMT)
committerBrad King <brad.king@kitware.com>2006-02-03 21:51:46 (GMT)
commit2683c5bd0d74c01ef8ab2bd60a00b5e9115c1d65 (patch)
treebbb079cdfc9d94dd2efa8bdd87f65f6fdee7585d /Source/cmCommands.cxx
parent131c4a3a17f5701e0e20ed0c4ad1a64ff4791423 (diff)
downloadCMake-2683c5bd0d74c01ef8ab2bd60a00b5e9115c1d65.zip
CMake-2683c5bd0d74c01ef8ab2bd60a00b5e9115c1d65.tar.gz
CMake-2683c5bd0d74c01ef8ab2bd60a00b5e9115c1d65.tar.bz2
ENH: Adding new EXECUTE_PROCESS command that interfaces to KWSys Process Execution.
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 ec989d4..88b06c2 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -18,6 +18,7 @@
#if defined(CMAKE_BUILD_WITH_CMAKE)
#include "cmAuxSourceDirectoryCommand.cxx"
#include "cmEndWhileCommand.cxx"
+#include "cmExecuteProcessCommand.cxx"
#include "cmExportLibraryDependencies.cxx"
#include "cmEnableLanguageCommand.cxx"
#include "cmFLTKWrapUICommand.cxx"
@@ -60,6 +61,7 @@ void GetPredefinedCommands(std::list<cmCommand*>&
commands.push_back(new cmAuxSourceDirectoryCommand);
commands.push_back(new cmEnableLanguageCommand);
commands.push_back(new cmEndWhileCommand);
+ commands.push_back(new cmExecuteProcessCommand);
commands.push_back(new cmExportLibraryDependenciesCommand);
commands.push_back(new cmFLTKWrapUICommand);
commands.push_back(new cmGetCMakePropertyCommand);