summaryrefslogtreecommitdiffstats
path: root/Source/cmDSPWriter.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-07-30 15:34:03 (GMT)
committerBrad King <brad.king@kitware.com>2001-07-30 15:34:03 (GMT)
commitddec29c52d790333fd83b7826d807b73f4f1e36c (patch)
tree1351c0489fcbb47a814d996a808b6360c7abfc37 /Source/cmDSPWriter.cxx
parentb24861d895f96040e35c94944cc3866e78e7781c (diff)
downloadCMake-ddec29c52d790333fd83b7826d807b73f4f1e36c.zip
CMake-ddec29c52d790333fd83b7826d807b73f4f1e36c.tar.gz
CMake-ddec29c52d790333fd83b7826d807b73f4f1e36c.tar.bz2
BUG: Changed include and link directory paths in cmMakefile back to std::vector because there is an order dependency. Only cmMakefile::AddIncludeDirectory and cmMakefile::AddLinkDirectory should be called to add directories to the paths. They make sure the paths are unique as they are inserted.
Diffstat (limited to 'Source/cmDSPWriter.cxx')
-rw-r--r--Source/cmDSPWriter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx
index 626a213..eff7bf1 100644
--- a/Source/cmDSPWriter.cxx
+++ b/Source/cmDSPWriter.cxx
@@ -68,8 +68,8 @@ void cmDSPWriter::OutputDSPFile()
}
// Setup /I and /LIBPATH options for the resulting DSP file
- std::set<std::string>& includes = m_Makefile->GetIncludeDirectories();
- std::set<std::string>::iterator i;
+ std::vector<std::string>& includes = m_Makefile->GetIncludeDirectories();
+ std::vector<std::string>::iterator i;
for(i = includes.begin(); i != includes.end(); ++i)
{
m_IncludeOptions += "/I \"";
@@ -504,8 +504,8 @@ void cmDSPWriter::WriteDSPHeader(std::ostream& fout, const char *libName,
libMultiLineOptions += exePath;
libMultiLineOptions += "\" \n";
}
- std::set<std::string>::iterator i;
- std::set<std::string>& libdirs = m_Makefile->GetLinkDirectories();
+ std::vector<std::string>::iterator i;
+ std::vector<std::string>& libdirs = m_Makefile->GetLinkDirectories();
for(i = libdirs.begin(); i != libdirs.end(); ++i)
{
libOptions += " /LIBPATH:\"";