diff options
author | Brad King <brad.king@kitware.com> | 2015-10-12 14:26:13 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-10-12 14:26:13 (GMT) |
commit | f3fa7c6bc364a523ba7a437402603fd84c6c9e4b (patch) | |
tree | 5f9ab0e1fe99481bf868ad572f6d59c57ad867aa /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | 5dba212f3adf8ffac297c283fff748691678887e (diff) | |
parent | 096f0988496d49c6c1f56f32863965dc65a077ab (diff) | |
download | CMake-f3fa7c6bc364a523ba7a437402603fd84c6c9e4b.zip CMake-f3fa7c6bc364a523ba7a437402603fd84c6c9e4b.tar.gz CMake-f3fa7c6bc364a523ba7a437402603fd84c6c9e4b.tar.bz2 |
Merge topic 'minor-cleanups'
096f0988 cmComputeLinkDepends: Remove unused typedef.
ee44be22 cmGeneratorTarget: Use local GetProperty method.
4f767afe cmMakefile: Remove unneeded container clears.
c72d276a C::B: Remove unused variables.
c99b6cef cmLocalGenerator: Devirtualize method.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index cb13fcf..4b78601 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -937,7 +937,7 @@ void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks() cmLocalGenerator* tlg = gt->GetLocalGenerator(); if(gt->GetType() == cmTarget::INTERFACE_LIBRARY - || gt->Target->GetPropertyAsBool("EXCLUDE_FROM_ALL")) + || gt->GetPropertyAsBool("EXCLUDE_FROM_ALL")) { continue; } |