summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-12 18:10:45 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-12 21:10:44 (GMT)
commit7bb4e3db069e06fe2eac053e329ffb9f1ea322bf (patch)
tree2d8977d341d55c97eee7031f9cea2af13786b971 /Source/cmMakefile.cxx
parent6241253a4b20e74625b855b1e0d5220c8e7282b1 (diff)
downloadCMake-7bb4e3db069e06fe2eac053e329ffb9f1ea322bf.zip
CMake-7bb4e3db069e06fe2eac053e329ffb9f1ea322bf.tar.gz
CMake-7bb4e3db069e06fe2eac053e329ffb9f1ea322bf.tar.bz2
cmMakefile: Out-of-line Home directory accessors.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 34b4621..dea9e46 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -3461,6 +3461,11 @@ cmMakefile::LexicalPushPop::~LexicalPushPop()
this->Makefile->PopFunctionBlockerBarrier(this->ReportError);
}
+const char* cmMakefile::GetHomeDirectory() const
+{
+ return this->cmHomeDirectory.c_str();
+}
+
void cmMakefile::SetHomeDirectory(const std::string& dir)
{
this->cmHomeDirectory = dir;
@@ -3472,6 +3477,11 @@ void cmMakefile::SetHomeDirectory(const std::string& dir)
}
}
+const char* cmMakefile::GetHomeOutputDirectory() const
+{
+ return this->HomeOutputDirectory.c_str();
+}
+
void cmMakefile::SetHomeOutputDirectory(const std::string& lib)
{
this->HomeOutputDirectory = lib;