diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-07-07 17:55:45 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-07-07 17:55:45 (GMT) |
commit | ea38258eb315cf4209f01d2d959695cacfd4079d (patch) | |
tree | 693e29f6ea2b326a967b3f02c780969a83d7f5df /Source/cmSourceFile.cxx | |
parent | c5bfdf69171787dd5ad0aba64b1bfc5abd15d697 (diff) | |
download | CMake-ea38258eb315cf4209f01d2d959695cacfd4079d.zip CMake-ea38258eb315cf4209f01d2d959695cacfd4079d.tar.gz CMake-ea38258eb315cf4209f01d2d959695cacfd4079d.tar.bz2 |
BUG: mor emissing convert to unix slashes
Diffstat (limited to 'Source/cmSourceFile.cxx')
-rw-r--r-- | Source/cmSourceFile.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx index 6af0af5..595e234 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; } |