diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-06-01 18:23:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-06-04 13:06:09 (GMT) |
commit | 6e570f857acd3322640db72112f2dc37b69396cf (patch) | |
tree | f8afeb7539aa6f1326f61f5f18ba43d419b4a18e /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 3d8c6cd9648089c389c1496fb910d664a5773ab4 (diff) | |
download | CMake-6e570f857acd3322640db72112f2dc37b69396cf.zip CMake-6e570f857acd3322640db72112f2dc37b69396cf.tar.gz CMake-6e570f857acd3322640db72112f2dc37b69396cf.tar.bz2 |
cmLocalGenerator: Remove 'optional' parameter from Convert.
Port callers away from it.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index c565632..717f33f 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -305,13 +305,10 @@ cmSourceFile* cmLocalVisualStudio7Generator::CreateVCProjBuildRule() comment += makefileIn; std::string args; args = "-H"; - args += this->Convert(this->Makefile->GetHomeDirectory(), - START_OUTPUT, UNCHANGED, true); + args += this->Makefile->GetHomeDirectory(); commandLine.push_back(args); args = "-B"; - args += - this->Convert(this->Makefile->GetHomeOutputDirectory(), - START_OUTPUT, UNCHANGED, true); + args += this->Makefile->GetHomeOutputDirectory(); commandLine.push_back(args); commandLine.push_back("--check-stamp-file"); std::string stampFilename = this->Convert(stampName.c_str(), FULL, |