Remove now-unused directory setters.

This commit is contained in:
Stephen Kelly 2015-10-06 00:24:26 +02:00
parent 360e4e1db0
commit 6c02f62f75
2 changed files with 0 additions and 17 deletions

View File

@ -1784,26 +1784,11 @@ void cmMakefile::AddSubDirectory(const std::string& srcPath,
} }
} }
void cmMakefile::SetCurrentSourceDirectory(const std::string& dir)
{
this->StateSnapshot.GetDirectory().SetCurrentSource(dir);
this->AddDefinition("CMAKE_CURRENT_SOURCE_DIR",
this->StateSnapshot.GetDirectory().GetCurrentSource());
}
const char* cmMakefile::GetCurrentSourceDirectory() const const char* cmMakefile::GetCurrentSourceDirectory() const
{ {
return this->StateSnapshot.GetDirectory().GetCurrentSource(); return this->StateSnapshot.GetDirectory().GetCurrentSource();
} }
void cmMakefile::SetCurrentBinaryDirectory(const std::string& dir)
{
this->StateSnapshot.GetDirectory().SetCurrentBinary(dir);
const char* binDir = this->StateSnapshot.GetDirectory().GetCurrentBinary();
cmSystemTools::MakeDirectory(binDir);
this->AddDefinition("CMAKE_CURRENT_BINARY_DIR", binDir);
}
const char* cmMakefile::GetCurrentBinaryDirectory() const const char* cmMakefile::GetCurrentBinaryDirectory() const
{ {
return this->StateSnapshot.GetDirectory().GetCurrentBinary(); return this->StateSnapshot.GetDirectory().GetCurrentBinary();

View File

@ -353,9 +353,7 @@ public:
*/ */
void SetArgcArgv(const std::vector<std::string>& args); void SetArgcArgv(const std::vector<std::string>& args);
void SetCurrentSourceDirectory(const std::string& dir);
const char* GetCurrentSourceDirectory() const; const char* GetCurrentSourceDirectory() const;
void SetCurrentBinaryDirectory(const std::string& dir);
const char* GetCurrentBinaryDirectory() const; const char* GetCurrentBinaryDirectory() const;
//@} //@}