summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorExpressionEvaluationFile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-03-27 08:46:58 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-02 10:29:33 (GMT)
commit936e00b92c9afe2be6b91d65166ade8ec1e06f48 (patch)
treee574b3da43593cc61bcc5f9c6430658cfebf849f /Source/cmGeneratorExpressionEvaluationFile.cxx
parent358be9b3207ad92a7ce4a5744db6a7265d8a0844 (diff)
downloadCMake-936e00b92c9afe2be6b91d65166ade8ec1e06f48.zip
CMake-936e00b92c9afe2be6b91d65166ade8ec1e06f48.tar.gz
CMake-936e00b92c9afe2be6b91d65166ade8ec1e06f48.tar.bz2
Simplify multiple config handling.
Use conventional pattern of not repeating the loop body for empty config.
Diffstat (limited to 'Source/cmGeneratorExpressionEvaluationFile.cxx')
-rw-r--r--Source/cmGeneratorExpressionEvaluationFile.cxx15
1 files changed, 6 insertions, 9 deletions
diff --git a/Source/cmGeneratorExpressionEvaluationFile.cxx b/Source/cmGeneratorExpressionEvaluationFile.cxx
index d41285d..95a946a 100644
--- a/Source/cmGeneratorExpressionEvaluationFile.cxx
+++ b/Source/cmGeneratorExpressionEvaluationFile.cxx
@@ -135,18 +135,15 @@ void cmGeneratorExpressionEvaluationFile::Generate()
if (allConfigs.empty())
{
- this->Generate("", inputExpression.get(), outputFiles);
+ allConfigs.push_back("");
}
- else
+ for(std::vector<std::string>::const_iterator li = allConfigs.begin();
+ li != allConfigs.end(); ++li)
{
- for(std::vector<std::string>::const_iterator li = allConfigs.begin();
- li != allConfigs.end(); ++li)
+ this->Generate(*li, inputExpression.get(), outputFiles);
+ if(cmSystemTools::GetFatalErrorOccured())
{
- this->Generate(*li, inputExpression.get(), outputFiles);
- if(cmSystemTools::GetFatalErrorOccured())
- {
- return;
- }
+ return;
}
}
}