vcproj generator: Fix auto-generated inter-project dependencies
Task-number: QTBUG-49580 Change-Id: I356be24ac555ed436e4f638e83c6cca703281cba Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>bb10
parent
753ebd5ba0
commit
00abd1ddd2
|
|
@ -585,7 +585,7 @@ ProStringList VcprojGenerator::collectDependencies(QMakeProject *proj, QHash<QSt
|
|||
wit != where.end(); ++wit) {
|
||||
const ProStringList &l = tmp_proj.values(ProKey(*wit));
|
||||
for (ProStringList::ConstIterator it = l.begin(); it != l.end(); ++it) {
|
||||
QString opt = (*it).toQString();
|
||||
const QString opt = fixLibFlag(*it).toQString();
|
||||
if (!opt.startsWith("/") && // Not a switch
|
||||
opt != newDep->target && // Not self
|
||||
opt != "opengl32.lib" && // We don't care about these libs
|
||||
|
|
|
|||
Loading…
Reference in New Issue