diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-03-14 16:29:15 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-03-14 16:29:15 (GMT) |
commit | 791aa6052b9033e89645b324b1c99222936981df (patch) | |
tree | fdd95f48321d8074e4c97eaba0b03da3e885d409 /Source/cmEnableTestingCommand.cxx | |
parent | f7c024df2a2ae6b8cf5ba127ee764a55f81f06e6 (diff) | |
download | CMake-791aa6052b9033e89645b324b1c99222936981df.zip CMake-791aa6052b9033e89645b324b1c99222936981df.tar.gz CMake-791aa6052b9033e89645b324b1c99222936981df.tar.bz2 |
ENH: add support for out of source source
Diffstat (limited to 'Source/cmEnableTestingCommand.cxx')
-rw-r--r-- | Source/cmEnableTestingCommand.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/cmEnableTestingCommand.cxx b/Source/cmEnableTestingCommand.cxx index 75adee3..802a9a5 100644 --- a/Source/cmEnableTestingCommand.cxx +++ b/Source/cmEnableTestingCommand.cxx @@ -15,6 +15,7 @@ =========================================================================*/ #include "cmEnableTestingCommand.h" +#include "cmSubDirectory.h" // we do this in the final pass so that we now the subdirs have all // been defined @@ -64,18 +65,19 @@ void cmEnableTestingCommand::FinalPass() if (!m_Makefile->GetSubDirectories().empty()) { fout << "SUBDIRS("; - 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(); + const std::vector<cmSubDirectory>& subdirs + = m_Makefile->GetSubDirectories(); + std::vector<cmSubDirectory>::const_iterator i = subdirs.begin(); + fout << (*i).SourcePath.c_str(); ++i; for(; i != subdirs.end(); ++i) { - fout << " " << i->first.c_str(); + fout << " " << i->SourcePath.c_str(); } fout << ")" << std::endl << std::endl;; } fout.close(); - + return; } |