Skip to content
Snippets Groups Projects
Commit 4fec64a2 authored by dt's avatar dt
Browse files

Some internal qmake files were listed in the project tree.

Checking paths against each other is a little more complex.
parent 5ea40c09
No related branches found
No related tags found
No related merge requests found
......@@ -86,12 +86,12 @@ void ProFileReader::releaseParsedProFile(ProFile *)
QList<ProFile*> ProFileReader::includeFiles() const
{
QString qmakeMkSpecDir = propertyValue("QMAKE_MKSPECS");
QString qmakeMkSpecDir = QFileInfo(propertyValue("QMAKE_MKSPECS")).absoluteFilePath();
QList<ProFile *> list;
QMap<QString, ProFile *>::const_iterator it, end;
end = m_includeFiles.constEnd();
for (it = m_includeFiles.constBegin(); it != end; ++it) {
if (!(it.key().startsWith(qmakeMkSpecDir)))
if (!QFileInfo((it.key())).absoluteFilePath().startsWith(qmakeMkSpecDir))
list.append(it.value());
}
return list;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment