From ea38258eb315cf4209f01d2d959695cacfd4079d Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Thu, 7 Jul 2005 13:55:45 -0400 Subject: [PATCH] BUG: mor emissing convert to unix slashes --- Source/cmSourceFile.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx index 6af0af587..595e23481 100644 --- a/Source/cmSourceFile.cxx +++ b/Source/cmSourceFile.cxx @@ -139,6 +139,7 @@ void cmSourceFile::SetName(const char* name, const char* dir, const char *ext, fname += ext; } m_FullPath = cmSystemTools::CollapseFullPath(fname.c_str(), dir); + cmSystemTools::ConvertToUnixSlashes(m_FullPath); m_SourceExtension = ext; return; }