diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-13 19:46:33 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-13 19:46:33 (GMT) |
commit | 216c985f7213d784bcff15797badceff659a35d3 (patch) | |
tree | 444d78cc114c728a98620ea435390226e720f3c2 /Source/cmCommands.cxx | |
parent | 96a3b4d3fc7242dd695b64aa0596abac47ddd644 (diff) | |
download | CMake-216c985f7213d784bcff15797badceff659a35d3.zip CMake-216c985f7213d784bcff15797badceff659a35d3.tar.gz CMake-216c985f7213d784bcff15797badceff659a35d3.tar.bz2 |
added new 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 ab48ccf..301ed62 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -58,6 +58,7 @@ #include "cmLinkDirectoriesCommand.cxx" #include "cmLinkLibrariesCommand.cxx" #include "cmLoadCacheCommand.cxx" +#include "cmMacroCommand.cxx" #include "cmMakeDirectoryCommand.cxx" #include "cmMarkAsAdvancedCommand.cxx" #include "cmMessageCommand.cxx" @@ -127,6 +128,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmLinkDirectoriesCommand); commands.push_back(new cmLinkLibrariesCommand); commands.push_back(new cmLoadCacheCommand); + commands.push_back(new cmMacroCommand); commands.push_back(new cmMakeDirectoryCommand); commands.push_back(new cmMarkAsAdvancedCommand); commands.push_back(new cmMessageCommand); |