diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmBuildCommand.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmBuildCommand.cxx b/Source/cmBuildCommand.cxx index 8d75237..528c365 100644 --- a/Source/cmBuildCommand.cxx +++ b/Source/cmBuildCommand.cxx @@ -68,6 +68,13 @@ bool cmBuildCommand::InitialPass(std::vector<std::string>& args) makecommand += m_Makefile->GetProjectName(); makecommand += ".dsw /MAKE \"ALL_BUILD - Release\" "; } + else if(makeprogram.find("Borland") != std::string::npos || + makeprogram.find("BORLAND") != std::string::npos || + makeprogram.find("borland") != std::string::npos) + { + makecommand = makeprogram; + makecommand += " -K"; + } else { makecommand = makeprogram; |