FASTBuild: remove non-existent autogen byproducts

Fixes: #27374
This commit is contained in:
Eduard Voronkin
2025-11-10 20:18:18 -08:00
committed by Brad King
parent 1c2bc3b668
commit b1b3602cda
+3 -1
View File
@@ -1394,7 +1394,9 @@ bool cmQtAutoGenInitializer::InitAutogenTarget()
if (this->Uic.Enabled) {
for (auto const& file : this->Uic.UiHeaders) {
this->AddGeneratedSource(file.first, this->Uic);
autogenByproducts.push_back(file.second);
if (this->GlobalGen && !GlobalGen->IsFastbuild()) {
autogenByproducts.push_back(file.second);
}
}
}