summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-09-11 17:40:47 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-09-11 17:40:47 (GMT)
commitbaa7a4022ead7c77de9a9c4549f9f3cfe6b64158 (patch)
tree71a125f0ae5a0a022d58ff238dd79bec8e2b9e41
parent368f03256a2d16df8a4a125123549269bc9b6f9e (diff)
downloadCMake-baa7a4022ead7c77de9a9c4549f9f3cfe6b64158.zip
CMake-baa7a4022ead7c77de9a9c4549f9f3cfe6b64158.tar.gz
CMake-baa7a4022ead7c77de9a9c4549f9f3cfe6b64158.tar.bz2
fix for include paths
-rw-r--r--Source/cmDSPWriter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx
index 73da668..016c75f 100644
--- a/Source/cmDSPWriter.cxx
+++ b/Source/cmDSPWriter.cxx
@@ -73,7 +73,7 @@ void cmDSPWriter::OutputDSPFile()
for(i = includes.begin(); i != includes.end(); ++i)
{
m_IncludeOptions += " /I ";
- m_IncludeOptions += cmSystemTools::EscapeSpaces(i->c_str());
+ m_IncludeOptions += cmSystemTools::ConvertToWindowsSlashesAndCleanUp(cmSystemTools::EscapeSpaces(i->c_str()));
}
// Create the DSP or set of DSP's for libraries and executables