Merge topic 'fix-12441-show-custom-target-progress'
7ab1162
CMake: Fix progress reporting for custom targets (#12441)
This commit is contained in:
commit
be637d7a92
|
@ -34,6 +34,20 @@ void cmMakefileUtilityTargetGenerator::WriteRuleFiles()
|
||||||
*this->BuildFileStream
|
*this->BuildFileStream
|
||||||
<< "# Utility rule file for " << this->Target->GetName() << ".\n\n";
|
<< "# Utility rule file for " << this->Target->GetName() << ".\n\n";
|
||||||
|
|
||||||
|
if(!this->NoRuleMessages)
|
||||||
|
{
|
||||||
|
const char* root = (this->Makefile->IsOn("CMAKE_MAKE_INCLUDE_FROM_ROOT")?
|
||||||
|
"$(CMAKE_BINARY_DIR)/" : "");
|
||||||
|
// Include the progress variables for the target.
|
||||||
|
*this->BuildFileStream
|
||||||
|
<< "# Include the progress variables for this target.\n"
|
||||||
|
<< this->LocalGenerator->IncludeDirective << " " << root
|
||||||
|
<< this->Convert(this->ProgressFileNameFull.c_str(),
|
||||||
|
cmLocalGenerator::HOME_OUTPUT,
|
||||||
|
cmLocalGenerator::MAKEFILE)
|
||||||
|
<< "\n\n";
|
||||||
|
}
|
||||||
|
|
||||||
// write the custom commands for this target
|
// write the custom commands for this target
|
||||||
this->WriteTargetBuildRules();
|
this->WriteTargetBuildRules();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue