summaryrefslogtreecommitdiff
path: root/Source/cmGlobalBorlandMakefileGenerator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-12-03 16:19:16 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2002-12-03 16:19:16 -0500
commite2d1104881a8f1d303d48236df76ec39bc0db93f (patch)
treec16f2d1c229ea782693334c5c83721c1dd02d21f /Source/cmGlobalBorlandMakefileGenerator.cxx
parentde316cac0502503882c04a6c4172296f2abf2877 (diff)
downloadcmake-e2d1104881a8f1d303d48236df76ec39bc0db93f.tar.gz
determine CMAKE_MAKE_PROGRAM in EnableLanguage
Diffstat (limited to 'Source/cmGlobalBorlandMakefileGenerator.cxx')
-rw-r--r--Source/cmGlobalBorlandMakefileGenerator.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGlobalBorlandMakefileGenerator.cxx b/Source/cmGlobalBorlandMakefileGenerator.cxx
index e53fee6aa1..d6aa008e7c 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);
}