summaryrefslogtreecommitdiffstats
path: root/Source/cmSetDirectoryPropertiesCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSetDirectoryPropertiesCommand.cxx')
-rw-r--r--Source/cmSetDirectoryPropertiesCommand.cxx9
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;
}