diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-05-09 12:51:54 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-05-09 12:51:54 (GMT) |
commit | cb6bc6f0aa254a0eb5910aa5a9a36ee1c15f46e3 (patch) | |
tree | 51c7f3ea41957a192cf95366a123cd3d53df735e /Source/cmCommands.cxx | |
parent | a74d8698eb67337fafe48d2359a9e1bfaa8b1272 (diff) | |
download | CMake-cb6bc6f0aa254a0eb5910aa5a9a36ee1c15f46e3.zip CMake-cb6bc6f0aa254a0eb5910aa5a9a36ee1c15f46e3.tar.gz CMake-cb6bc6f0aa254a0eb5910aa5a9a36ee1c15f46e3.tar.bz2 |
added load cache command and fixed source file
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 4ecb917..ef1393e 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -39,6 +39,7 @@ #include "cmIncludeRegularExpressionCommand.cxx" #include "cmLinkDirectoriesCommand.cxx" #include "cmLinkLibrariesCommand.cxx" +#include "cmLoadCacheCommand.cxx" #include "cmMakeDirectoryCommand.cxx" #include "cmOptionCommand.cxx" #include "cmProjectCommand.cxx" @@ -55,7 +56,6 @@ #include "cmVTKWrapTclCommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" - void GetPredefinedCommands(std::list<cmCommand*>& commands) { commands.push_back(new cmAbstractFilesCommand); @@ -91,6 +91,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmIncludeRegularExpressionCommand); commands.push_back(new cmLinkDirectoriesCommand); commands.push_back(new cmLinkLibrariesCommand); + commands.push_back(new cmLoadCacheCommand); commands.push_back(new cmMakeDirectoryCommand); commands.push_back(new cmOptionCommand); commands.push_back(new cmProjectCommand); @@ -105,7 +106,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 cmWrapExcludeFilesCommand); + commands.push_back(new cmWrapExcludeFilesCommand); } |