diff options
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 33753c7..1d5df5d 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -409,7 +409,7 @@ void cmLocalGenerator::GenerateInstallRules() for(std::vector<cmLocalGenerator*>::const_iterator ci = this->Children.begin(); ci != this->Children.end(); ++ci) { - if(!(*ci)->GetExcludeAll()) + if(!(*ci)->GetMakefile()->GetProperty("EXCLUDE_FROM_ALL")) { std::string odir = (*ci)->GetMakefile()->GetStartOutputDirectory(); cmSystemTools::ConvertToUnixSlashes(odir); @@ -2610,13 +2610,3 @@ std::string cmLocalGenerator::GetSourceObjectName(cmSourceFile& sf) { return sf.GetSourceName(); } - -bool cmLocalGenerator::GetExcludeAll() -{ - return this->Makefile->GetPropertyAsBool("EXCLUDE_FROM_ALL"); -} - -void cmLocalGenerator::SetExcludeAll(bool b) -{ - this->Makefile->SetProperty("EXCLUDE_FROM_ALL", b?"TRUE":"FALSE"); -} |