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/cmAddSubDirectoryCommand.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/cmAddSubDirectoryCommand.cxx')
-rw-r--r-- | Source/cmAddSubDirectoryCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddSubDirectoryCommand.cxx b/Source/cmAddSubDirectoryCommand.cxx index 01598bc..9d55c1a 100644 --- a/Source/cmAddSubDirectoryCommand.cxx +++ b/Source/cmAddSubDirectoryCommand.cxx @@ -122,7 +122,7 @@ bool cmAddSubDirectoryCommand::InitialPass // Add the subdirectory using the computed full paths. this->Makefile->AddSubDirectory(srcPath, binPath, - excludeFromAll, false, true); + excludeFromAll, true); return true; } |