diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-23 01:17:32 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-27 07:44:21 +0100 |
commit | 00b8c0a8d4b59dc01276d083ccae4a8138718b12 (patch) | |
tree | bfff3d3098b9674d4e74829119d57c7ef4cfd86f /Source/cmLocalNinjaGenerator.cxx | |
parent | 4c6374bcc56ea7d7f7e67c518e60de94be267256 (diff) | |
download | cmake-00b8c0a8d4b59dc01276d083ccae4a8138718b12.tar.gz |
cmLocalGenerator: Add IsRootMakefile API
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r-- | Source/cmLocalNinjaGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx index 891c44ecbb..7de48a44ba 100644 --- a/Source/cmLocalNinjaGenerator.cxx +++ b/Source/cmLocalNinjaGenerator.cxx @@ -56,7 +56,7 @@ void cmLocalNinjaGenerator::Generate() #endif // We do that only once for the top CMakeLists.txt file. - if(this->Makefile->IsRootMakefile()) + if(this->IsRootMakefile()) { this->WriteBuildFileTop(); @@ -277,7 +277,7 @@ void cmLocalNinjaGenerator::WriteProcessedMakefile(std::ostream& os) << "# Write statements declared in CMakeLists.txt:" << std::endl << "# " << this->Makefile->GetDefinition("CMAKE_CURRENT_LIST_FILE") << std::endl; - if(this->Makefile->IsRootMakefile()) + if(this->IsRootMakefile()) os << "# Which is the root file." << std::endl; cmGlobalNinjaGenerator::WriteDivider(os); os << std::endl; |