diff options
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 1a0cfdc..341f210 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1921,9 +1921,13 @@ int cmake::CheckBuildSystem() cmGlobalGenerator *ggd = this->CreateGlobalGenerator(genName); if (ggd) { + // Check the dependencies in case source files were removed. std::auto_ptr<cmLocalGenerator> lgd(ggd->CreateLocalGenerator()); lgd->SetGlobalGenerator(ggd); lgd->CheckDependencies(mf, verbose, this->ClearBuildSystem); + + // Check for multiple output pairs. + ggd->CheckMultipleOutputs(mf, verbose); } // No need to rerun. |