diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-10-03 18:40:22 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-10-03 18:40:22 (GMT) |
commit | 22a7977ff96bf63ea6707c9bbc2fe591704d29fb (patch) | |
tree | 351c0791380a1a82a7ac2192644ed09368e3667d /Source/cmCommands.cxx | |
parent | 26d31fc2a08ec2f3b521a3cb253b6209c5dee912 (diff) | |
download | CMake-22a7977ff96bf63ea6707c9bbc2fe591704d29fb.zip CMake-22a7977ff96bf63ea6707c9bbc2fe591704d29fb.tar.gz CMake-22a7977ff96bf63ea6707c9bbc2fe591704d29fb.tar.bz2 |
ENH: added endmacro 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 6bfabd6..8c3cff4 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -22,6 +22,7 @@ #include "cmCreateTestSourceList.cxx" #include "cmElseIfCommand.cxx" #include "cmEnableLanguageCommand.cxx" +#include "cmEndMacroCommand.cxx" #include "cmEndWhileCommand.cxx" #include "cmExecuteProcessCommand.cxx" #include "cmExportLibraryDependencies.cxx" @@ -76,6 +77,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmCreateTestSourceList); commands.push_back(new cmElseIfCommand); commands.push_back(new cmEnableLanguageCommand); + commands.push_back(new cmEndMacroCommand); commands.push_back(new cmEndWhileCommand); commands.push_back(new cmExecuteProcessCommand); commands.push_back(new cmExportLibraryDependenciesCommand); |