mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
added generation of the GENERATED_QT_FILES list for make clean
This commit is contained in:
@@ -405,6 +405,14 @@ void cmLocalUnixMakefileGenerator::OutputTargetRules(std::ostream& fout)
|
||||
}
|
||||
}
|
||||
fout << "\n\n";
|
||||
const char * qt_files = m_Makefile->GetDefinition("GENERATED_QT_FILES");
|
||||
if (m_Makefile->GetDefinition("GENERATED_QT_FILES")!=NULL &&
|
||||
strlen(m_Makefile->GetDefinition("GENERATED_QT_FILES"))>0)
|
||||
{
|
||||
fout << "GENERATED_QT_FILES = ";
|
||||
fout << m_Makefile->GetDefinition("GENERATED_QT_FILES");
|
||||
fout << "\n\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user