diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-22 23:17:32 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-27 06:44:21 (GMT) |
commit | 00b8c0a8d4b59dc01276d083ccae4a8138718b12 (patch) | |
tree | bfff3d3098b9674d4e74829119d57c7ef4cfd86f /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | 4c6374bcc56ea7d7f7e67c518e60de94be267256 (diff) | |
download | CMake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.zip CMake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.tar.gz CMake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.tar.bz2 |
cmLocalGenerator: Add IsRootMakefile API
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index b4a915c..7dd24fb 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -523,7 +523,7 @@ cmGlobalUnixMakefileGenerator3 cmLocalUnixMakefileGenerator3* lg) { // Only subdirectories need these rules. - if(lg->GetMakefile()->IsRootMakefile()) + if(lg->IsRootMakefile()) { return; } @@ -1084,7 +1084,7 @@ void cmGlobalUnixMakefileGenerator3::WriteHelpRule static_cast<cmLocalUnixMakefileGenerator3 *>(this->LocalGenerators[i]); // for the passed in makefile or if this is the top Makefile wripte out // the targets - if (lg2 == lg || lg->GetMakefile()->IsRootMakefile()) + if (lg2 == lg || lg->IsRootMakefile()) { // for each target Generate the rule files for each target. std::vector<cmGeneratorTarget*> targets = lg2->GetGeneratorTargets(); |