diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2019-03-15 15:01:59 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2019-05-13 14:45:36 (GMT) |
commit | b133d14fb1c0183c647136188cf4fff0ed05c58e (patch) | |
tree | 5505820b876ec4b4182b537ec069c8a1acb059bc /Source/cmGlobalGenerator.cxx | |
parent | 741fb95f660c73035a26b572dfcd3d628d324d57 (diff) | |
download | CMake-b133d14fb1c0183c647136188cf4fff0ed05c58e.zip CMake-b133d14fb1c0183c647136188cf4fff0ed05c58e.tar.gz CMake-b133d14fb1c0183c647136188cf4fff0ed05c58e.tar.bz2 |
Refactor: Allow cmInstallGenerator::Compute() to return an error
This is preparation for an upcoming merge request, which will add
a new cmInstallGenerator that returns false if there are errors in
the Compute() step.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 8223dd1..b08dd1c 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1372,7 +1372,9 @@ bool cmGlobalGenerator::Compute() for (cmLocalGenerator* localGen : this->LocalGenerators) { cmMakefile* mf = localGen->GetMakefile(); for (cmInstallGenerator* g : mf->GetInstallGenerators()) { - g->Compute(localGen); + if (!g->Compute(localGen)) { + return false; + } } } |