summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-01-27 20:25:49 (GMT)
committerBrad King <brad.king@kitware.com>2020-01-27 20:39:04 (GMT)
commit657820a00b83cb28e018a94af2a8bf7475827c8b (patch)
tree4c8d9387d89647d99b4044de08c686b185401636 /Source/cmGlobalGenerator.cxx
parentb12b01302878853595ddbc66af5cd21436e8c737 (diff)
downloadCMake-657820a00b83cb28e018a94af2a8bf7475827c8b.zip
CMake-657820a00b83cb28e018a94af2a8bf7475827c8b.tar.gz
CMake-657820a00b83cb28e018a94af2a8bf7475827c8b.tar.bz2
Ninja: Track when running to re-generate during a build
Tell CMake explicitly when it is re-running inside a `ninja` invocation to re-generate the build system.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 38ff3ae..5c6bc5c 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -2525,6 +2525,7 @@ void cmGlobalGenerator::AddGlobalTarget_RebuildCache(
gti.PerConfig = false;
cmCustomCommandLine singleLine;
singleLine.push_back(cmSystemTools::GetCMakeCommand());
+ singleLine.push_back("--regenerate-during-build");
singleLine.push_back("-S$(CMAKE_SOURCE_DIR)");
singleLine.push_back("-B$(CMAKE_BINARY_DIR)");
gti.CommandLines.push_back(std::move(singleLine));