diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-10 19:11:12 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-10 19:11:12 (GMT) |
commit | f87271d0eae52e6c670d10b53e72eed72e80bfd1 (patch) | |
tree | f5c7c2c35fd68be706db491c96422d545f409031 /Source/cmCommands.cxx | |
parent | b8a33fb424aa28b710e0ec170814ac380ee057db (diff) | |
download | CMake-f87271d0eae52e6c670d10b53e72eed72e80bfd1.zip CMake-f87271d0eae52e6c670d10b53e72eed72e80bfd1.tar.gz CMake-f87271d0eae52e6c670d10b53e72eed72e80bfd1.tar.bz2 |
ENH: Add initial implementation of the list 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 22d4e32..da4683d 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -28,6 +28,7 @@ #include "cmIncludeExternalMSProjectCommand.cxx" #include "cmInstallCommand.cxx" #include "cmLinkLibrariesCommand.cxx" +#include "cmListCommand.cxx" #include "cmLoadCacheCommand.cxx" #include "cmMathCommand.cxx" #include "cmOutputRequiredFilesCommand.cxx" @@ -71,6 +72,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmIncludeExternalMSProjectCommand); commands.push_back(new cmInstallCommand); commands.push_back(new cmLinkLibrariesCommand); + commands.push_back(new cmListCommand); commands.push_back(new cmLoadCacheCommand); commands.push_back(new cmLoadCommandCommand); commands.push_back(new cmMathCommand); |