diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-06-14 14:28:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-06-14 14:28:04 (GMT) |
commit | c15adc922166ca84c03a4ae4f076256a93046ece (patch) | |
tree | ff1705ef8e7df2ee9cf3254a9efac569a07e1e0d /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | a014eee86ae91e590a2a554ea89f07de0fac5b81 (diff) | |
download | CMake-c15adc922166ca84c03a4ae4f076256a93046ece.zip CMake-c15adc922166ca84c03a4ae4f076256a93046ece.tar.gz CMake-c15adc922166ca84c03a4ae4f076256a93046ece.tar.bz2 |
BUG: fix sub project path problem
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index e585213..e6f4bad 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -216,7 +216,8 @@ void cmGlobalVisualStudio6Generator::WriteDSWFile(std::ostream& fout, this->WriteDSWHeader(fout); // Get the home directory with the trailing slash - std::string homedir = m_CMakeInstance->GetHomeDirectory(); +#undef GetCurrentDirectory + std::string homedir = root->GetMakefile()->GetCurrentDirectory(); homedir += "/"; unsigned int i; |