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/cmLocalUnixMakefileGenerator3.cxx | |
parent | 4c6374bcc56ea7d7f7e67c518e60de94be267256 (diff) | |
download | CMake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.zip CMake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.tar.gz CMake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.tar.bz2 |
cmLocalGenerator: Add IsRootMakefile API
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 9bb2765..82e3b01 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -254,7 +254,7 @@ void cmLocalUnixMakefileGenerator3::WriteLocalMakefile() return; } // always write the top makefile - if (!this->GetMakefile()->IsRootMakefile()) + if (!this->IsRootMakefile()) { ruleFileStream.SetCopyIfDifferent(true); } @@ -265,7 +265,7 @@ void cmLocalUnixMakefileGenerator3::WriteLocalMakefile() // only write local targets unless at the top Keep track of targets already // listed. std::set<std::string> emittedTargets; - if (!this->GetMakefile()->IsRootMakefile()) + if (!this->IsRootMakefile()) { // write our targets, and while doing it collect up the object // file rules @@ -880,7 +880,7 @@ void cmLocalUnixMakefileGenerator3 std::vector<std::string> no_depends; std::vector<std::string> commands; commands.push_back(runRule); - if(!this->GetMakefile()->IsRootMakefile()) + if(!this->IsRootMakefile()) { this->CreateCDCommand(commands, this->GetBinaryDirectory(), |