diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 19:50:29 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 22:07:55 (GMT) |
commit | ee44be22cb26627698d5548171a4d102988a3452 (patch) | |
tree | 23e82e22939bf16c8c4f00b7a2c174458026a99d /Source/cmGlobalGenerator.cxx | |
parent | 4f767afe1d67bf10f749b0bc5ee5f2cb77ce9b40 (diff) | |
download | CMake-ee44be22cb26627698d5548171a4d102988a3452.zip CMake-ee44be22cb26627698d5548171a4d102988a3452.tar.gz CMake-ee44be22cb26627698d5548171a4d102988a3452.tar.bz2 |
cmGeneratorTarget: Use local GetProperty method.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index eb4dfee..be69b2b 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -2033,7 +2033,7 @@ bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root, cmGeneratorTarget* target) const { if(target->GetType() == cmTarget::INTERFACE_LIBRARY - || target->Target->GetPropertyAsBool("EXCLUDE_FROM_ALL")) + || target->GetPropertyAsBool("EXCLUDE_FROM_ALL")) { // This target is excluded from its directory. return true; |