diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2014-11-29 16:56:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-01 14:50:49 (GMT) |
commit | 0de867dde282670461e56ce61e9c33fc6044d9a4 (patch) | |
tree | af94ceb9dbebc712c08381b520462aca49dd113d /Source/cmBootstrapCommands1.cxx | |
parent | 8e75f1d2fa3049ac31f4ebdbc255fca3e6414802 (diff) | |
download | CMake-0de867dde282670461e56ce61e9c33fc6044d9a4.zip CMake-0de867dde282670461e56ce61e9c33fc6044d9a4.tar.gz CMake-0de867dde282670461e56ce61e9c33fc6044d9a4.tar.bz2 |
continue: Add a new CMake language command for loop continuation (#14013)
Inspired-by: Doug Barbieri
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
Diffstat (limited to 'Source/cmBootstrapCommands1.cxx')
-rw-r--r-- | Source/cmBootstrapCommands1.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands1.cxx b/Source/cmBootstrapCommands1.cxx index 5502609..4274d85 100644 --- a/Source/cmBootstrapCommands1.cxx +++ b/Source/cmBootstrapCommands1.cxx @@ -28,6 +28,7 @@ #include "cmCMakePolicyCommand.cxx" #include "cmCommandArgumentsHelper.cxx" #include "cmConfigureFileCommand.cxx" +#include "cmContinueCommand.cxx" #include "cmCoreTryCompile.cxx" #include "cmCreateTestSourceList.cxx" #include "cmDefinePropertyCommand.cxx" @@ -70,6 +71,7 @@ void GetBootstrapCommands1(std::list<cmCommand*>& commands) commands.push_back(new cmCMakeMinimumRequired); commands.push_back(new cmCMakePolicyCommand); commands.push_back(new cmConfigureFileCommand); + commands.push_back(new cmContinueCommand); commands.push_back(new cmCreateTestSourceList); commands.push_back(new cmDefinePropertyCommand); commands.push_back(new cmElseCommand); |