mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
Merge topic 'graphviz-at-generate-time'
6cf5564
Generate graphviz files at generate time, not configure time.
This commit is contained in:
commit
b61960564a
@ -2437,11 +2437,6 @@ int cmake::ActualConfigure()
|
||||
{
|
||||
this->CacheManager->SaveCache(this->GetHomeOutputDirectory());
|
||||
}
|
||||
if ( !this->GraphVizFile.empty() )
|
||||
{
|
||||
std::cout << "Generate graphviz: " << this->GraphVizFile << std::endl;
|
||||
this->GenerateGraphViz(this->GraphVizFile.c_str());
|
||||
}
|
||||
if(cmSystemTools::GetErrorOccuredFlag())
|
||||
{
|
||||
return -1;
|
||||
@ -2604,6 +2599,11 @@ int cmake::Generate()
|
||||
return -1;
|
||||
}
|
||||
this->GlobalGenerator->Generate();
|
||||
if ( !this->GraphVizFile.empty() )
|
||||
{
|
||||
std::cout << "Generate graphviz: " << this->GraphVizFile << std::endl;
|
||||
this->GenerateGraphViz(this->GraphVizFile.c_str());
|
||||
}
|
||||
if(this->WarnUnusedCli)
|
||||
{
|
||||
this->RunCheckForUnusedVariables();
|
||||
|
Loading…
Reference in New Issue
Block a user