diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 15:06:30 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 15:06:30 (GMT) |
commit | 8b3b49a010219eeba327d882e1fe38f721b6bed8 (patch) | |
tree | 095e639d4828f7a0e4e905c1f14d5fe32369e923 /Source/cmInstallFilesCommand.cxx | |
parent | 627ab62ce093d8f50ed0ba50a1dd1081165b19f1 (diff) | |
download | CMake-8b3b49a010219eeba327d882e1fe38f721b6bed8.zip CMake-8b3b49a010219eeba327d882e1fe38f721b6bed8.tar.gz CMake-8b3b49a010219eeba327d882e1fe38f721b6bed8.tar.bz2 |
ENH: major change, the cmMakefile now contains a master list of cmSourceFile objects, the source lists reference the list via pointers, also you can now set properties on a file, like compile flags, abstract, etc.
Diffstat (limited to 'Source/cmInstallFilesCommand.cxx')
-rw-r--r-- | Source/cmInstallFilesCommand.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmInstallFilesCommand.cxx b/Source/cmInstallFilesCommand.cxx index 8874957..87cdd38 100644 --- a/Source/cmInstallFilesCommand.cxx +++ b/Source/cmInstallFilesCommand.cxx @@ -64,12 +64,12 @@ void cmInstallFilesCommand::FinalPass() // look for a srclist if (m_Makefile->GetSources().find(temps) != m_Makefile->GetSources().end()) { - const std::vector<cmSourceFile> &clsList = + const std::vector<cmSourceFile*> &clsList = m_Makefile->GetSources().find(temps)->second; - std::vector<cmSourceFile>::const_iterator c = clsList.begin(); + std::vector<cmSourceFile*>::const_iterator c = clsList.begin(); for (; c != clsList.end(); ++c) { - testf = c->GetSourceName() + ext; + testf = (*c)->GetSourceName() + ext; // add to the result targetSourceLists.push_back(testf); } |