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/cmMakefile.h | |
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/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index c6090b5..8472825 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -455,7 +455,7 @@ public: * recursing up the tree starting at the StartDirectory and going up until * it reaches the HomeDirectory. */ - void SetStartDirectory(const std::string& dir) + void SetCurrentSourceDirectory(const std::string& dir) { this->cmStartDirectory = dir; cmSystemTools::ConvertToUnixSlashes(this->cmStartDirectory); @@ -464,7 +464,7 @@ public: this->AddDefinition("CMAKE_CURRENT_SOURCE_DIR", this->cmStartDirectory.c_str()); } - void SetStartOutputDirectory(const std::string& dir) + void SetCurrentBinaryDirectory(const std::string& dir) { this->StartOutputDirectory = dir; cmSystemTools::ConvertToUnixSlashes(this->StartOutputDirectory); |