diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:53:21 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:53:21 (GMT) |
commit | daa37f116340fa86c1a511847fe65ad999095fa0 (patch) | |
tree | c7b5e27c5bc3407266dca8ea5c987ff32a81b5a2 /Source/cmSetDirectoryPropertiesCommand.cxx | |
parent | 2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (diff) | |
download | CMake-daa37f116340fa86c1a511847fe65ad999095fa0.zip CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.gz CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmSetDirectoryPropertiesCommand.cxx')
-rw-r--r-- | Source/cmSetDirectoryPropertiesCommand.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Source/cmSetDirectoryPropertiesCommand.cxx b/Source/cmSetDirectoryPropertiesCommand.cxx index 3fb1178..e329e37 100644 --- a/Source/cmSetDirectoryPropertiesCommand.cxx +++ b/Source/cmSetDirectoryPropertiesCommand.cxx @@ -42,12 +42,14 @@ bool cmSetDirectoryPropertiesCommand::InitialPass( const std::string& value = *(ait+1); if ( prop == "VARIABLES" ) { - this->SetError("Variables and cache variables should be set using SET command"); + this->SetError + ("Variables and cache variables should be set using SET command"); return false; } else if ( prop == "MACROS" ) { - this->SetError("Commands and macros cannot be set using SET_CMAKE_PROPERTIES"); + this->SetError + ("Commands and macros cannot be set using SET_CMAKE_PROPERTIES"); return false; } else if ( prop == "INCLUDE_DIRECTORIES" ) @@ -71,7 +73,8 @@ bool cmSetDirectoryPropertiesCommand::InitialPass( if ( prop == "ADDITIONAL_MAKE_CLEAN_FILES" ) { // This property is not inherrited - if ( strcmp(this->Makefile->GetCurrentDirectory(), this->Makefile->GetStartDirectory()) != 0 ) + if ( strcmp(this->Makefile->GetCurrentDirectory(), + this->Makefile->GetStartDirectory()) != 0 ) { continue; } |