Browse Source

BUG: mor emissing convert to unix slashes

Ken Martin 20 years ago
parent
commit
ea38258eb3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Source/cmSourceFile.cxx

+ 1 - 0
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;
 }