diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-03 21:19:16 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-12-03 21:19:16 (GMT) |
commit | e2d1104881a8f1d303d48236df76ec39bc0db93f (patch) | |
tree | c16f2d1c229ea782693334c5c83721c1dd02d21f /Source/cmGlobalBorlandMakefileGenerator.cxx | |
parent | de316cac0502503882c04a6c4172296f2abf2877 (diff) | |
download | CMake-e2d1104881a8f1d303d48236df76ec39bc0db93f.zip CMake-e2d1104881a8f1d303d48236df76ec39bc0db93f.tar.gz CMake-e2d1104881a8f1d303d48236df76ec39bc0db93f.tar.bz2 |
determine CMAKE_MAKE_PROGRAM in EnableLanguage
Diffstat (limited to 'Source/cmGlobalBorlandMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalBorlandMakefileGenerator.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGlobalBorlandMakefileGenerator.cxx b/Source/cmGlobalBorlandMakefileGenerator.cxx index e53fee6..d6aa008 100644 --- a/Source/cmGlobalBorlandMakefileGenerator.cxx +++ b/Source/cmGlobalBorlandMakefileGenerator.cxx @@ -40,6 +40,11 @@ void cmGlobalBorlandMakefileGenerator::EnableLanguage(const char* l, mf->AddDefinition("BORLAND", "1"); mf->AddDefinition("CMAKE_GENERATOR_CC", "bcc32"); mf->AddDefinition("CMAKE_GENERATOR_CXX", "bcc32"); + std::string setMakeProgram = mf->GetDefinition("CMAKE_ROOT"); + setMakeProgram += "/Modules/CMakeBorlandFindMake.cmake"; + mf->ReadListFile(0, setMakeProgram.c_str()); + mf->AddDefinition("CMAKE_MAKE_PROGRAM", "make"); + this->cmGlobalUnixMakefileGenerator::EnableLanguage(l, mf); } |