diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-12-03 18:35:41 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-12-03 18:35:41 (GMT) |
commit | f4b1c3880be819ea1c996e2754cc231285c4a40e (patch) | |
tree | c5c880392b4c16e669a9df6814a0919226a5ab06 /Source/cmBootstrapCommands.cxx | |
parent | 257b775f70b98e2242f01a252e08a55cdac91993 (diff) | |
download | CMake-f4b1c3880be819ea1c996e2754cc231285c4a40e.zip CMake-f4b1c3880be819ea1c996e2754cc231285c4a40e.tar.gz CMake-f4b1c3880be819ea1c996e2754cc231285c4a40e.tar.bz2 |
ENH: add functions and raise scope
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index 143dad0..5075c61 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -36,7 +36,9 @@ #include "cmElseCommand.cxx" #include "cmEnableTestingCommand.cxx" #include "cmEndForEachCommand.cxx" +#include "cmEndFunctionCommand.cxx" #include "cmEndIfCommand.cxx" +#include "cmEndMacroCommand.cxx" #include "cmExecProgramCommand.cxx" #include "cmExternalMakefileProjectGenerator.cxx" #include "cmFindBase.cxx" @@ -47,6 +49,7 @@ #include "cmFindPathCommand.cxx" #include "cmFindProgramCommand.cxx" #include "cmForEachCommand.cxx" +#include "cmFunctionCommand.cxx" #include "cmGetCMakePropertyCommand.cxx" #include "cmGetFilenameComponentCommand.cxx" #include "cmGetSourceFilePropertyCommand.cxx" @@ -66,6 +69,7 @@ #include "cmMessageCommand.cxx" #include "cmOptionCommand.cxx" #include "cmProjectCommand.cxx" +#include "cmRaiseScopeCommand.cxx" #include "cmSetCommand.cxx" #include "cmSetPropertiesCommand.cxx" #include "cmSetSourceFilesPropertiesCommand.cxx" @@ -95,7 +99,9 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmElseCommand); commands.push_back(new cmEnableTestingCommand); commands.push_back(new cmEndForEachCommand); + commands.push_back(new cmEndFunctionCommand); commands.push_back(new cmEndIfCommand); + commands.push_back(new cmEndMacroCommand); commands.push_back(new cmExecProgramCommand); commands.push_back(new cmFileCommand); commands.push_back(new cmFindFileCommand); @@ -104,6 +110,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmFindPathCommand); commands.push_back(new cmFindProgramCommand); commands.push_back(new cmForEachCommand); + commands.push_back(new cmFunctionCommand); commands.push_back(new cmGetCMakePropertyCommand); commands.push_back(new cmGetFilenameComponentCommand); commands.push_back(new cmGetSourceFilePropertyCommand); @@ -122,6 +129,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmMessageCommand); commands.push_back(new cmOptionCommand); commands.push_back(new cmProjectCommand); + commands.push_back(new cmRaiseScopeCommand); commands.push_back(new cmSetCommand); commands.push_back(new cmSetPropertiesCommand); commands.push_back(new cmSetSourceFilesPropertiesCommand); |