summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-02-16 21:12:17 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-02-16 21:12:17 (GMT)
commitca0230a33eea074a7beee74dd1ecc50134068359 (patch)
treef7daeb6c8c5d353f16c011976b841e116706336b /Source/cmLocalVisualStudio6Generator.cxx
parent4d325a45977a00db6d0a8872d751b6cb41071b41 (diff)
downloadCMake-ca0230a33eea074a7beee74dd1ecc50134068359.zip
CMake-ca0230a33eea074a7beee74dd1ecc50134068359.tar.gz
CMake-ca0230a33eea074a7beee74dd1ecc50134068359.tar.bz2
ENH: check in initial conv library stuff
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio6Generator.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx
index 0c29c03..d53ac78 100644
--- a/Source/cmLocalVisualStudio6Generator.cxx
+++ b/Source/cmLocalVisualStudio6Generator.cxx
@@ -1472,3 +1472,15 @@ void cmLocalVisualStudio6Generator
options += "\n";
}
}
+
+
+void cmLocalVisualStudio6Generator
+::GetTargetObjectFileDirectories(cmTarget* target,
+ std::vector<std::string>&
+ dirs)
+{
+ std::string dir = this->Makefile->GetCurrentOutputDirectory();
+ dir += "/";
+ dir += this->GetGlobalGenerator()->GetCMakeCFGInitDirectory();
+ dirs.push_back(dir);
+}