diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-01 18:01:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-01 18:32:48 (GMT) |
commit | f2e07a6d90806d50b6897051c2275e38689d16e7 (patch) | |
tree | c770def8075773e968dcc899c98a82af2a4c4e6e /Source/cmSubdirCommand.cxx | |
parent | aafe2821889333ee647c67e0fc55472d7903c02a (diff) | |
download | CMake-f2e07a6d90806d50b6897051c2275e38689d16e7.zip CMake-f2e07a6d90806d50b6897051c2275e38689d16e7.tar.gz CMake-f2e07a6d90806d50b6897051c2275e38689d16e7.tar.bz2 |
cmMakefile: Remove unused PreOrder member.
Remove references from dependendent API.
Diffstat (limited to 'Source/cmSubdirCommand.cxx')
-rw-r--r-- | Source/cmSubdirCommand.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmSubdirCommand.cxx b/Source/cmSubdirCommand.cxx index 93ad4f3..7cb2edc 100644 --- a/Source/cmSubdirCommand.cxx +++ b/Source/cmSubdirCommand.cxx @@ -22,7 +22,6 @@ bool cmSubdirCommand } bool res = true; bool excludeFromAll = false; - bool preorder = false; for(std::vector<std::string>::const_iterator i = args.begin(); i != args.end(); ++i) @@ -34,7 +33,7 @@ bool cmSubdirCommand } if(*i == "PREORDER") { - preorder = true; + // Ignored continue; } @@ -48,7 +47,7 @@ bool cmSubdirCommand std::string(this->Makefile->GetCurrentOutputDirectory()) + "/" + i->c_str(); this->Makefile->AddSubDirectory(srcPath, binPath, - excludeFromAll, preorder, false); + excludeFromAll, false); } // otherwise it is a full path else if ( cmSystemTools::FileIsDirectory(*i) ) @@ -59,7 +58,7 @@ bool cmSubdirCommand std::string(this->Makefile->GetCurrentOutputDirectory()) + "/" + cmSystemTools::GetFilenameName(*i); this->Makefile->AddSubDirectory(*i, binPath, - excludeFromAll, preorder, false); + excludeFromAll, false); } else { |