summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio7Generator.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-10 12:41:47 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-10 12:41:47 (GMT)
commit708828dc3761cc009f5ea479e6012ca1193e7e60 (patch)
treef813ac450a1d47b8b824ee35e35fa0937c6774bc /Source/cmLocalVisualStudio7Generator.cxx
parent8b88391daa911db4829e45217e4d73c5d7df44c0 (diff)
downloadCMake-708828dc3761cc009f5ea479e6012ca1193e7e60.zip
CMake-708828dc3761cc009f5ea479e6012ca1193e7e60.tar.gz
CMake-708828dc3761cc009f5ea479e6012ca1193e7e60.tar.bz2
ENH: removed old convert calls
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio7Generator.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx
index f92bbb0..649c6e0 100644
--- a/Source/cmLocalVisualStudio7Generator.cxx
+++ b/Source/cmLocalVisualStudio7Generator.cxx
@@ -147,11 +147,12 @@ void cmLocalVisualStudio7Generator::AddVCProjBuildRule()
std::string args;
args = "-H";
args +=
- this->ConvertToRelativeOutputPath(m_Makefile->GetHomeDirectory());
+ this->Convert(m_Makefile->GetHomeDirectory(), START_OUTPUT, SHELL, true);
commandLine.push_back(args);
args = "-B";
args +=
- this->ConvertToRelativeOutputPath(m_Makefile->GetHomeOutputDirectory());
+ this->Convert(m_Makefile->GetHomeOutputDirectory(),
+ START_OUTPUT, SHELL, true);
commandLine.push_back(args);
std::string configFile =