diff options
author | Brad King <brad.king@kitware.com> | 2015-06-04 13:13:33 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-06-04 13:13:33 (GMT) |
commit | d6fe79f3abc211361f0aee909e08fd6a1531a68b (patch) | |
tree | e3eae036938dfe9fd8744d86d85a164126ebf200 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 5a1c8806bfded9e68280542fa7573f21eb125e95 (diff) | |
parent | 6e570f857acd3322640db72112f2dc37b69396cf (diff) | |
download | CMake-d6fe79f3abc211361f0aee909e08fd6a1531a68b.zip CMake-d6fe79f3abc211361f0aee909e08fd6a1531a68b.tar.gz CMake-d6fe79f3abc211361f0aee909e08fd6a1531a68b.tar.bz2 |
Merge topic 'remove-CMAKE_USE_RELATIVE_PATHS'
6e570f85 cmLocalGenerator: Remove 'optional' parameter from Convert.
3d8c6cd9 cmLocalGenerator: Remove obsolete method.
e44e6bcc Port away from obsolete method.
1335992c Remove CMAKE_USE_RELATIVE_PATHS variable.
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index d24066f..b96a799 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -309,14 +309,10 @@ bool cmGlobalVisualStudio8Generator::AddCheckTarget() cmCustomCommandLine commandLine; commandLine.push_back(cmSystemTools::GetCMakeCommand()); std::string argH = "-H"; - argH += lg->Convert(mf->GetHomeDirectory(), - cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::UNCHANGED, true); + argH += mf->GetHomeDirectory(); commandLine.push_back(argH); std::string argB = "-B"; - argB += lg->Convert(mf->GetHomeOutputDirectory(), - cmLocalGenerator::START_OUTPUT, - cmLocalGenerator::UNCHANGED, true); + argB += mf->GetHomeOutputDirectory(); commandLine.push_back(argB); commandLine.push_back("--check-stamp-list"); commandLine.push_back(stampList.c_str()); |