diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-16 19:57:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-20 22:15:20 (GMT) |
commit | b288a997e9fc4f0a7ea23fc2f1439e34b5975704 (patch) | |
tree | 41f4ef6a874cb12b1f5ae00ecedf5805884c8648 /Source/cmake.cxx | |
parent | 932d53bc026bfb18595deafce60c8c8c10a8a139 (diff) | |
download | CMake-b288a997e9fc4f0a7ea23fc2f1439e34b5975704.zip CMake-b288a997e9fc4f0a7ea23fc2f1439e34b5975704.tar.gz CMake-b288a997e9fc4f0a7ea23fc2f1439e34b5975704.tar.bz2 |
cmMakefile: Rename SetStart* directory API to SetCurrent*.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 4120fea..439cc54 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -375,11 +375,11 @@ void cmake::ReadListFile(const std::vector<std::string>& args, cmsys::auto_ptr<cmLocalGenerator> lg(gg->CreateLocalGenerator()); lg->GetMakefile()->SetHomeOutputDirectory (cmSystemTools::GetCurrentWorkingDirectory()); - lg->GetMakefile()->SetStartOutputDirectory + lg->GetMakefile()->SetCurrentBinaryDirectory (cmSystemTools::GetCurrentWorkingDirectory()); lg->GetMakefile()->SetHomeDirectory (cmSystemTools::GetCurrentWorkingDirectory()); - lg->GetMakefile()->SetStartDirectory + lg->GetMakefile()->SetCurrentSourceDirectory (cmSystemTools::GetCurrentWorkingDirectory()); if (this->GetWorkingMode() != NORMAL_MODE) { |