diff options
author | Brad King <brad.king@kitware.com> | 2007-05-28 15:00:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-28 15:00:26 (GMT) |
commit | 27a0677d3e1caffd16232086e86ed1657731723d (patch) | |
tree | 3f0546179b06c51cfddb8e4f57fba775b27c4aed /Source/cmLocalVisualStudio6Generator.cxx | |
parent | 3f2dd9bc54d1dfc47fcf8e22979e409ad50e875a (diff) | |
download | CMake-27a0677d3e1caffd16232086e86ed1657731723d.zip CMake-27a0677d3e1caffd16232086e86ed1657731723d.tar.gz CMake-27a0677d3e1caffd16232086e86ed1657731723d.tar.bz2 |
COMP: Fix build for windows-only generators after change to GetSourceFiles signature.
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index 25e3253..b769882 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -244,7 +244,7 @@ void cmLocalVisualStudio6Generator::AddDSPBuildRule(cmTarget& tgt) no_working_directory, true); if(cmSourceFile* file = this->Makefile->GetSource(makefileIn.c_str())) { - tgt.GetSourceFiles().push_back(file); + tgt.AddSourceFile(file); } else { @@ -309,11 +309,11 @@ void cmLocalVisualStudio6Generator::WriteDSPFile(std::ostream& fout, std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups(); // get the classes from the source lists then add them to the groups - std::vector<cmSourceFile*> & classes = target.GetSourceFiles(); + std::vector<cmSourceFile*> const & classes = target.GetSourceFiles(); // now all of the source files have been properly assigned to the target // now stick them into source groups using the reg expressions - for(std::vector<cmSourceFile*>::iterator i = classes.begin(); + for(std::vector<cmSourceFile*>::const_iterator i = classes.begin(); i != classes.end(); i++) { // Add the file to the list of sources. @@ -564,7 +564,7 @@ cmLocalVisualStudio6Generator // Add a source file representing this output to the project. cmSourceFile* outsf = this->Makefile->GetSourceFileWithOutput(output); - target.GetSourceFiles().push_back(outsf); + target.AddSourceFile(outsf); // Free the fake output name. delete [] output; |