summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorZack Galbreath <zack.galbreath@kitware.com>2019-01-15 23:26:02 (GMT)
committerZack Galbreath <zack.galbreath@kitware.com>2019-01-21 16:38:24 (GMT)
commitdc6888573da15cd7ddb9f91b70ef3e6c4e7cae15 (patch)
tree8c2c2ded30bd3e5ca2048dc91fba85d03e13db45 /Source/cmGlobalUnixMakefileGenerator3.cxx
parentbd3685b6cfac90bb553df0330e1732c066fe7dca (diff)
downloadCMake-dc6888573da15cd7ddb9f91b70ef3e6c4e7cae15.zip
CMake-dc6888573da15cd7ddb9f91b70ef3e6c4e7cae15.tar.gz
CMake-dc6888573da15cd7ddb9f91b70ef3e6c4e7cae15.tar.bz2
Pass EXCLUDE_FROM_ALL from directory to targets
When a target is created it now inherits the EXCLUDE_FROM_ALL property from its directory. This change makes it possible to include a target in "all", even if its directory has been marked as EXCLUDE_FROM_ALL.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx
index ceee500..5e45ae1 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.cxx
+++ b/Source/cmGlobalUnixMakefileGenerator3.cxx
@@ -702,7 +702,7 @@ void cmGlobalUnixMakefileGenerator3::WriteConvenienceRules2(
localName, depends, commands, true);
// add the all/all dependency
- if (!this->IsExcluded(this->LocalGenerators[0], gtarget)) {
+ if (!this->IsExcluded(gtarget)) {
depends.clear();
depends.push_back(localName);
commands.clear();
@@ -767,7 +767,7 @@ void cmGlobalUnixMakefileGenerator3::WriteConvenienceRules2(
"Pre-install relink rule for target.", localName,
depends, commands, true);
- if (!this->IsExcluded(this->LocalGenerators[0], gtarget)) {
+ if (!this->IsExcluded(gtarget)) {
depends.clear();
depends.push_back(localName);
commands.clear();