summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-06 13:42:31 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-06 13:44:17 (GMT)
commitf573bd22e4049746b53789fc0502cff8423dbe56 (patch)
treec165e4e8a08f46e61388cadf1071e0a0c82833ea /Source/cmGeneratorTarget.cxx
parentccbc2259137fe61a770bb0b5538a20bf5e00bc8f (diff)
downloadCMake-f573bd22e4049746b53789fc0502cff8423dbe56.zip
CMake-f573bd22e4049746b53789fc0502cff8423dbe56.tar.gz
CMake-f573bd22e4049746b53789fc0502cff8423dbe56.tar.bz2
cmLocalGenerator: Add Feature API from cmMakefile.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 4901820..67d0d54 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -370,7 +370,7 @@ const char* cmGeneratorTarget::GetFeature(const std::string& feature,
{
return value;
}
- return this->Makefile->GetFeature(feature, config);
+ return this->LocalGenerator->GetFeature(feature, config);
}
//----------------------------------------------------------------------------