diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-03-09 21:28:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-03-09 21:28:44 (GMT) |
commit | ddb815c12542f80f42562877298a73fab39bb4ca (patch) | |
tree | 825a90988e4710274a656b8f9bf7f32b7d0827fa /Source/cmEnableTestingCommand.cxx | |
parent | bf699505bc7fc378abf07ec4dfa0f0cc4fb89686 (diff) | |
download | CMake-ddb815c12542f80f42562877298a73fab39bb4ca.zip CMake-ddb815c12542f80f42562877298a73fab39bb4ca.tar.gz CMake-ddb815c12542f80f42562877298a73fab39bb4ca.tar.bz2 |
ENH: add new subdirectory exclude from top option
Diffstat (limited to 'Source/cmEnableTestingCommand.cxx')
-rw-r--r-- | Source/cmEnableTestingCommand.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmEnableTestingCommand.cxx b/Source/cmEnableTestingCommand.cxx index 7381df8..05a6545 100644 --- a/Source/cmEnableTestingCommand.cxx +++ b/Source/cmEnableTestingCommand.cxx @@ -63,13 +63,13 @@ void cmEnableTestingCommand::FinalPass() if (!m_Makefile->GetSubDirectories().empty()) { fout << "SUBDIRS("; - const std::vector<std::string>& subdirs = m_Makefile->GetSubDirectories(); - std::vector<std::string>::const_iterator i = subdirs.begin(); - fout << (*i).c_str(); + const std::vector<std::pair<cmStdString, bool> >& subdirs = m_Makefile->GetSubDirectories(); + std::vector<std::pair<cmStdString, bool> >::const_iterator i = subdirs.begin(); + fout << (*i).first.c_str(); ++i; for(; i != subdirs.end(); ++i) { - fout << " " << (*i).c_str(); + fout << " " << i->first.c_str(); } fout << ")" << std::endl << std::endl;; } |