cmMakefile: Fix indentation.
This commit is contained in:
parent
12c82fd8c0
commit
4dc4570734
|
@ -4160,10 +4160,10 @@ void cmMakefile::SetProperty(const std::string& prop, const char* value)
|
||||||
if (prop == "INCLUDE_DIRECTORIES")
|
if (prop == "INCLUDE_DIRECTORIES")
|
||||||
{
|
{
|
||||||
this->IncludeDirectoriesEntries.clear();
|
this->IncludeDirectoriesEntries.clear();
|
||||||
if (!value)
|
if (!value)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
cmListFileBacktrace lfbt = this->GetBacktrace();
|
cmListFileBacktrace lfbt = this->GetBacktrace();
|
||||||
this->IncludeDirectoriesEntries.push_back(
|
this->IncludeDirectoriesEntries.push_back(
|
||||||
cmValueWithOrigin(value, lfbt));
|
cmValueWithOrigin(value, lfbt));
|
||||||
|
@ -4172,10 +4172,10 @@ void cmMakefile::SetProperty(const std::string& prop, const char* value)
|
||||||
if (prop == "COMPILE_OPTIONS")
|
if (prop == "COMPILE_OPTIONS")
|
||||||
{
|
{
|
||||||
this->CompileOptionsEntries.clear();
|
this->CompileOptionsEntries.clear();
|
||||||
if (!value)
|
if (!value)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
cmListFileBacktrace lfbt = this->GetBacktrace();
|
cmListFileBacktrace lfbt = this->GetBacktrace();
|
||||||
this->CompileOptionsEntries.push_back(cmValueWithOrigin(value, lfbt));
|
this->CompileOptionsEntries.push_back(cmValueWithOrigin(value, lfbt));
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue