diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-06-05 18:40:25 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-06-05 18:40:25 (GMT) |
commit | 703242071f022b211253c68e434ec20e0c58e637 (patch) | |
tree | 2db84d24d340300c61f0b0b8de8bf2941a944e34 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | d5d0f17e5cb4eea7af9940daefbf8d55df964456 (diff) | |
download | CMake-703242071f022b211253c68e434ec20e0c58e637.zip CMake-703242071f022b211253c68e434ec20e0c58e637.tar.gz CMake-703242071f022b211253c68e434ec20e0c58e637.tar.bz2 |
more crazt changes source files now must match with full path
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 5e4b5cd..56b3e91 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -705,7 +705,11 @@ void cmLocalVisualStudio7Generator::WriteVCProjFile(std::ostream& fout, name += "."; name += outsf->GetSourceExtension(); } - srcFilesToProcess.push(name); + std::string temp = + cmSystemTools::GetFilenamePath(outsf->GetFullPath()); + temp += "/"; + temp += name; + srcFilesToProcess.push(temp); } // add its dependencies to the list to check unsigned int i; |