diff options
author | Brad King <brad.king@kitware.com> | 2005-02-25 00:28:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-02-25 00:28:44 (GMT) |
commit | de47b43c6f2f40e62620c49a3b34960f3cb8d90c (patch) | |
tree | ac983d2736edd0cd447c62cdd698ecab5ca7f685 | |
parent | 397dc1cef5cb778bd013cdb9b4139b3c7ab1f096 (diff) | |
download | CMake-de47b43c6f2f40e62620c49a3b34960f3cb8d90c.zip CMake-de47b43c6f2f40e62620c49a3b34960f3cb8d90c.tar.gz CMake-de47b43c6f2f40e62620c49a3b34960f3cb8d90c.tar.bz2 |
BUG: Need to configure relative path support for LocalGenerate to support old makefile generator.
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 4b8d711..0d66113 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -641,6 +641,9 @@ void cmGlobalGenerator::LocalGenerate() // start with this directory cmLocalGenerator *lg = this->CreateLocalGenerator(); + // Setup relative path generation. + this->ConfigureRelativePaths(); + // set the Start directories lg->GetMakefile()->SetStartDirectory(m_CMakeInstance->GetStartDirectory()); lg->GetMakefile()->SetStartOutputDirectory(m_CMakeInstance->GetStartOutputDirectory()); |