diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-11 10:40:28 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-11 10:40:28 -0400 |
commit | b8483cf10905814078693a58f0c3c7e56af7006f (patch) | |
tree | 75b247d243dc78c5f377c802f8d1a64eab0e9c07 /Source/cmGlobalMSYSMakefileGenerator.cxx | |
parent | 5e68642d164f1634f3df452df8930b0ef163d3a1 (diff) | |
download | cmake-b8483cf10905814078693a58f0c3c7e56af7006f.tar.gz |
STYLE: fix line length
Diffstat (limited to 'Source/cmGlobalMSYSMakefileGenerator.cxx')
-rw-r--r-- | Source/cmGlobalMSYSMakefileGenerator.cxx | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Source/cmGlobalMSYSMakefileGenerator.cxx b/Source/cmGlobalMSYSMakefileGenerator.cxx index 98862df5f5..16c52cc4b3 100644 --- a/Source/cmGlobalMSYSMakefileGenerator.cxx +++ b/Source/cmGlobalMSYSMakefileGenerator.cxx @@ -48,8 +48,8 @@ cmGlobalMSYSMakefileGenerator::FindMinGW(std::string const& makeloc) return mingwBin; } -void cmGlobalMSYSMakefileGenerator::EnableLanguage(std::vector<std::string>const& l, - cmMakefile *mf) +void cmGlobalMSYSMakefileGenerator +::EnableLanguage(std::vector<std::string>const& l, cmMakefile *mf) { this->FindMakeProgram(mf); std::string makeProgram = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM"); @@ -76,8 +76,9 @@ void cmGlobalMSYSMakefileGenerator::EnableLanguage(std::vector<std::string>const this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf); if(!mf->IsSet("CMAKE_AR") && !this->CMakeInstance->GetIsInTryCompile()) { - cmSystemTools::Error("CMAKE_AR was not found, please set to archive program. ", - mf->GetDefinition("CMAKE_AR")); + cmSystemTools::Error + ("CMAKE_AR was not found, please set to archive program. ", + mf->GetDefinition("CMAKE_AR")); } } @@ -94,9 +95,11 @@ cmLocalGenerator *cmGlobalMSYSMakefileGenerator::CreateLocalGenerator() } //---------------------------------------------------------------------------- -void cmGlobalMSYSMakefileGenerator::GetDocumentation(cmDocumentationEntry& entry) const +void cmGlobalMSYSMakefileGenerator +::GetDocumentation(cmDocumentationEntry& entry) const { entry.name = this->GetName(); entry.brief = "Generates MSYS makefiles."; - entry.full = "The makefiles use /bin/sh as the shell. They require msys to be installed on the machine."; + entry.full = "The makefiles use /bin/sh as the shell. " + "They require msys to be installed on the machine."; } |