diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-04-16 19:47:14 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-04-20 22:12:51 (GMT) |
commit | fcf246acd18dd168d9909cd33b191a3e6c9881e0 (patch) | |
tree | c77eba62753b7064f6a8c12dfbe339546e2196c7 /Source/cmMakefile.cxx | |
parent | 8878bea7b6a157948bb7c806523b1cfa4c9f7af8 (diff) | |
download | CMake-fcf246acd18dd168d9909cd33b191a3e6c9881e0.zip CMake-fcf246acd18dd168d9909cd33b191a3e6c9881e0.tar.gz CMake-fcf246acd18dd168d9909cd33b191a3e6c9881e0.tar.bz2 |
cmMakefile: Populate Home directories on initialize.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 23c2e48..bc0ac26 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -696,6 +696,9 @@ void cmMakefile::SetLocalGenerator(cmLocalGenerator* lg) this->Properties.SetCMakeInstance(this->GetCMakeInstance()); this->WarnUnused = this->GetCMakeInstance()->GetWarnUnused(); this->CheckSystemVars = this->GetCMakeInstance()->GetCheckSystemVars(); + this->SetHomeDirectory(this->GetCMakeInstance()->GetHomeDirectory()); + this->SetHomeOutputDirectory( + this->GetCMakeInstance()->GetHomeOutputDirectory()); } namespace |