STYLE: Fixed line-too-long.
This commit is contained in:
parent
fb4905aa62
commit
1de1f4bb83
|
@ -185,14 +185,16 @@ bool cmDependsFortran::WriteDependencies(const char *src, const char *obj,
|
||||||
<< "depends on this timestamp file.\n"
|
<< "depends on this timestamp file.\n"
|
||||||
<< "\n"
|
<< "\n"
|
||||||
<< "If another source in the same directory provides the module\n"
|
<< "If another source in the same directory provides the module\n"
|
||||||
<< "this file will be overwritten with a real module timestamp that\n"
|
<< "this file will be overwritten with a real module timestamp\n"
|
||||||
<< "is updated when the module is rebuilt.\n"
|
<< "that is updated when the module is rebuilt.\n"
|
||||||
<< "\n"
|
<< "\n"
|
||||||
<< "If no source in the directory provides the module at least the\n"
|
<< "If no source in the directory provides the module at least\n"
|
||||||
<< "project will build without failing to find the module timestamp.\n"
|
<< "the project will build without failing to find the module\n"
|
||||||
|
<< "timestamp.\n"
|
||||||
<< "\n"
|
<< "\n"
|
||||||
<< "In the future CMake may be able to locate modules in other directories\n"
|
<< "In the future CMake may be able to locate modules in other\n"
|
||||||
<< "or outside the project and update this timestamp file as necessary.\n"
|
<< "directories or outside the project and update this timestamp\n"
|
||||||
|
<< "file as necessary.\n"
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -160,14 +160,16 @@ bool cmInstallCommand::HandleScriptMode(std::vector<std::string> const& args)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
this->Makefile->AddInstallGenerator(
|
this->Makefile->AddInstallGenerator(
|
||||||
new cmInstallScriptGenerator(script.c_str(), false, component.c_str()));
|
new cmInstallScriptGenerator(script.c_str(), false,
|
||||||
|
component.c_str()));
|
||||||
}
|
}
|
||||||
else if(doing_code)
|
else if(doing_code)
|
||||||
{
|
{
|
||||||
doing_code = false;
|
doing_code = false;
|
||||||
std::string code = args[i];
|
std::string code = args[i];
|
||||||
this->Makefile->AddInstallGenerator(
|
this->Makefile->AddInstallGenerator(
|
||||||
new cmInstallScriptGenerator(code.c_str(), true, component.c_str()));
|
new cmInstallScriptGenerator(code.c_str(), true,
|
||||||
|
component.c_str()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue