Hi all;

Trying to build WebKit on Windows I get;

Reading C:/Qt/WebKit/WebCore/WebCore.pro [C:/Qt/WebKit/WebKitBuild/Release/WebCore]
WARNING: Failure to find: ..\..\..\WebKit\qt\Api\qwebkitversion.h echo WEBKIT_CLASS_HEADERS
WARNING: Failure to find: =
WARNING: Failure to find: ..\include\QWebInspector echo WEBKIT_PRIVATE_HEADERS
WARNING: Failure to find: =

Seems to be due to newly checked in DerivedSources.pro.

Also there is another problem in this file;

DerivedSources.pro line 36 has;

 eval(qtheader_module.commands += echo \\\'\$${LITERAL_HASH}include <QtNetwork/QtNetwork>\\\' >> $${qtheader_module.target};)

This won't work since < and > are special characters for Windows shell so it has to be double quoted like;

 eval(qtheader_module.commands += echo \\\"\$${LITERAL_HASH}include <QtNetwork/QtNetwork>\\\" >> $${qtheader_module.target};)


Regards,
İsmail