summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileLibraryTargetGenerator.cxx
diff options
context:
space:
mode:
authorRuslan Baratov <ruslan_baratov@yahoo.com>2017-03-28 06:06:05 (GMT)
committerBrad King <brad.king@kitware.com>2017-03-30 14:16:30 (GMT)
commita75757004bda0ff32a152a0d9d6379c02b1338ce (patch)
treecde26bb7f143fbd3358c7b7421070fbc0f7744e3 /Source/cmMakefileLibraryTargetGenerator.cxx
parente05835c35b5d31f31e1a55baf415c075b24a27ad (diff)
downloadCMake-a75757004bda0ff32a152a0d9d6379c02b1338ce.zip
CMake-a75757004bda0ff32a152a0d9d6379c02b1338ce.tar.gz
CMake-a75757004bda0ff32a152a0d9d6379c02b1338ce.tar.bz2
Refactoring: s,GetFeatureAsBool,IsIPOEnabled,
Method 'GetFeatureAsBool' is used only with 'INTERPROCEDURAL_OPTIMIZATION' feature. Substituting 'GetFeatureAsBool' with 'IsIPOEnabled'.
Diffstat (limited to 'Source/cmMakefileLibraryTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileLibraryTargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileLibraryTargetGenerator.cxx b/Source/cmMakefileLibraryTargetGenerator.cxx
index e5fae13..9ce13ec 100644
--- a/Source/cmMakefileLibraryTargetGenerator.cxx
+++ b/Source/cmMakefileLibraryTargetGenerator.cxx
@@ -133,7 +133,7 @@ void cmMakefileLibraryTargetGenerator::WriteStaticLibraryRules()
linkRuleVar += linkLanguage;
linkRuleVar += "_CREATE_STATIC_LIBRARY";
- if (this->GetFeatureAsBool("INTERPROCEDURAL_OPTIMIZATION") &&
+ if (this->GeneratorTarget->IsIPOEnabled(this->ConfigName) &&
this->Makefile->GetDefinition(linkRuleVar + "_IPO")) {
linkRuleVar += "_IPO";
}